| | |
| | | import com.doumee.dao.business.dto.CountCyclePriceDTO; |
| | | import com.doumee.dao.business.dto.InsuranceApplyOptDTO; |
| | | import com.doumee.dao.business.dto.InsuranceApplyQueryDTO; |
| | | import com.doumee.dao.business.dto.SmsCheckDTO; |
| | | import com.doumee.dao.business.model.InsuranceApply; |
| | | import com.doumee.dao.business.vo.CountCyclePriceVO; |
| | | import com.doumee.service.business.InsuranceApplyService; |
| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation("获取保障中人数") |
| | | @GetMapping("/guaranteeNum") |
| | | public ApiResponse<Integer> guaranteeNum() { |
| | | return ApiResponse.success(insuranceApplyService.guaranteeNum()); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("测试实际金额") |
| | | @GetMapping("/testFee") |
| | | public ApiResponse testFee(Integer id) { |
| | |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("投保确认书签章业务") |
| | | @GetMapping("/getSignTBQRSLink/{id}") |
| | | @ApiOperation("方案确认书签章业务") |
| | | @PostMapping("/signTBQRSLink") |
| | | @RequiresPermissions("business:insuranceapply:query") |
| | | public ApiResponse<String> getSignTBQRSLink(@PathVariable Integer id) { |
| | | return ApiResponse.success(insuranceApplyService.getSignTBQRSLink(id)); |
| | | public ApiResponse<String> getSignTBQRSLink(@RequestBody SmsCheckDTO smsCheckDTO) { |
| | | return ApiResponse.success(insuranceApplyService.getSignTBQRSLink(smsCheckDTO)); |
| | | } |
| | | @ApiOperation("人员名单签章") |
| | | @PostMapping("/getMemberListOnlineSignLink") |
| | | @RequiresPermissions("business:insuranceapply:query") |
| | | public ApiResponse<String> getMemberListOnlineSignLink(@RequestBody SmsCheckDTO smsCheckDTO) { |
| | | return ApiResponse.success(insuranceApplyService.getMemberListOnlineSignLink(smsCheckDTO)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("人员名单签章") |
| | | @GetMapping("/getMemberListOnlineSignLink/{id}") |
| | | @ApiOperation("投保申请单签章业务") |
| | | @PostMapping("/getSignWTBTBDLink") |
| | | @RequiresPermissions("business:insuranceapply:query") |
| | | public ApiResponse<String> getMemberListOnlineSignLink(@PathVariable Integer id) { |
| | | return ApiResponse.success(insuranceApplyService.getMemberListOnlineSignLink(id)); |
| | | public ApiResponse<String> getSignWTBTBDLink(@RequestBody SmsCheckDTO smsCheckDTO) { |
| | | return ApiResponse.success(insuranceApplyService.getSignWTBTBDLink(smsCheckDTO)); |
| | | } |
| | | |
| | | |