| | |
| | | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("理赔") |
| | | @ApiOperation("理算") |
| | | @PostMapping("/compensation") |
| | | public ApiResponse compensation(@RequestBody CompensationDTO dto) { |
| | | settleClaimsService.compensation(dto); |
| | |
| | | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("结案提交") |
| | | @ApiOperation("确认打款") |
| | | @PostMapping("/payCash") |
| | | public ApiResponse payCash(@RequestBody PayCashDTO dto) { |
| | | settleClaimsService.payCash(dto); |
| | |
| | | } |
| | | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("修改伤残类型") |
| | | @PostMapping("/updHurtType") |
| | | public ApiResponse updHurtType(@RequestBody UpdHurtTypeDTO dto) { |
| | | settleClaimsService.updHurtType(dto); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("获取商议问题类型内容") |
| | | @GetMapping("/getDiscussProblemType") |
| | | public ApiResponse<List<String>> getDiscussProblemType() { |
| | | return ApiResponse.success(settleClaimsService.getDiscussProblemType()); |
| | | } |
| | | |
| | | |
| | | } |