| | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("理赔费用项信息") |
| | | @GetMapping("/getCompensation") |
| | | public ApiResponse<List<CompensationVO>> getCompensation(@RequestParam Integer id) { |
| | | return ApiResponse.success(settleClaimsService.getCompensation(id)); |
| | | @PostMapping("/getCompensation") |
| | | public ApiResponse<List<CompensationVO>> getCompensation(@RequestBody CompensationFeeDTO dto) { |
| | | return ApiResponse.success(settleClaimsService.getCompensation(dto)); |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("修改案件类型") |
| | | @PostMapping("/updCaseType") |
| | | public ApiResponse updCaseType(@RequestBody CaseTypeDTO dto) { |
| | | settleClaimsService.updCaseType(dto); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | | |
| | | @PreventRepeat |
| | | @ApiOperation("结案提交") |
| | | @PostMapping("/payCash") |
| | | public ApiResponse payCash(@RequestBody PayCashDTO dto) { |
| | | settleClaimsService.payCash(dto); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | | |
| | | } |