| | |
| | | @ValueClassify("报告编制") |
| | | @ApiOperation(value = "批准") |
| | | @PostMapping("/ratifyReport") |
| | | public Result ratifyReport(Integer id, Integer isRatify, String ratifyTell) { |
| | | return Result.success(insReportService.ratifyReport(id, isRatify, ratifyTell)); |
| | | public Result ratifyReport(Integer id, Integer isRatify, String ratifyTell,String sealUrl) { |
| | | return Result.success(insReportService.ratifyReport(id, isRatify, ratifyTell,sealUrl)); |
| | | } |
| | | |
| | | @RequestMapping("/onlyOffice/save") |
| | |
| | | public Result upAll(MultipartFile file) throws IOException { |
| | | return Result.success(insReportService.upAll(file)); |
| | | } |
| | | |
| | | @ValueClassify("报告编制") |
| | | @ApiOperation(value = "判断是否生成总报告") |
| | | @PostMapping("/isReport") |
| | | public Result isReport(Integer id,Integer state) { |
| | | return Result.success(insReportService.isReport(id,state)); |
| | | } |
| | | } |