| | |
| | | return ApiResponse.success(insuranceApplyService.findPage(pageWrap)); |
| | | } |
| | | |
| | | @ApiOperation("列表") |
| | | @PostMapping("/findListByDTO") |
| | | @RequiresPermissions("business:insuranceapply:query") |
| | | public ApiResponse<List<InsuranceApply>> findListByDTO (@RequestBody InsuranceApplyQueryDTO insuranceApplyQueryDTO) { |
| | | return ApiResponse.success(insuranceApplyService.findListByDTO(insuranceApplyQueryDTO)); |
| | | } |
| | | |
| | | @ApiOperation("导出Excel") |
| | | @PostMapping("/exportExcel") |
| | | @RequiresPermissions("business:insuranceapply:exportExcel") |
| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation("企业申请退回") |
| | | @PostMapping("/applyReturn") |
| | | public ApiResponse applyReturn (@RequestBody InsuranceApplyOptDTO insuranceApplyOptDTO) { |
| | | insuranceApplyService.applyReturn(insuranceApplyOptDTO); |
| | | @ApiOperation("申请记录状态处理") |
| | | @PostMapping("/applyOpt") |
| | | public ApiResponse applyOpt (@RequestBody InsuranceApplyOptDTO insuranceApplyOptDTO) { |
| | | insuranceApplyService.applyOpt(insuranceApplyOptDTO); |
| | | return ApiResponse.success("操作成功"); |
| | | } |
| | | |