| | |
| | | @PostMapping("/check") |
| | | fun checkProblem( |
| | | @ApiParam(value = "问题id主键") @RequestParam("pId") pId: String, |
| | | @ApiParam(value = "审核操作, 0: 审核通过;1: 审核不通过;2: 整改通过;3: 整改不通过;4:问题审核撤回;5:整改审核撤回", |
| | | allowableValues = "0,1,2,3,4,5") @RequestParam("action") action: Byte, |
| | | @ApiParam(value = "审核操作, 0: 审核通过;1: 审核不通过;2: 整改通过;3: 整改不通过;4:问题审核撤回;5:整改审核撤回") @RequestParam("action") action: Byte, |
| | | @ApiParam(value = "审核备注") @RequestParam("remark") remark: String, |
| | | @ApiParam(value = "用户id") @RequestParam("userId") userId: String, |
| | | @ApiParam(value = "用户名") @RequestParam("userName") userName: String, |
| | |
| | | @PostMapping("/summary/scene") |
| | | fun getSceneProSummary( |
| | | @RequestBody areaVo: AreaVo, |
| | | @ApiParam(value = "排序字段", allowableValues = "pro, changePer") @RequestParam sortBy: String, |
| | | @ApiParam(value = "页码") @RequestParam(value = "page") page: Int, |
| | | @ApiParam(value = "单页数据量") @RequestParam(value = "per_page") perPage: Int, |
| | | ) = resPack { problemlistService.getSceneProSummary(areaVo, sortBy, page, perPage) } |
| | | ) = resPack { problemlistService.getSceneProSummary(areaVo, page, perPage) } |
| | | } |