| | |
| | | return projectPlanInfoService.addPlanInfo(request); |
| | | } |
| | | |
| | | @PostMapping("/savePlanInfo") |
| | | public Result savePlanInfo(@RequestBody ProjectPlanInfo item) { |
| | | return projectPlanInfoService.savePlanInfo(item); |
| | | @PostMapping("/resubmitPlanInfo") |
| | | public Result resubmitPlanInfo(@RequestBody ProjectPlanInfoForm form) { |
| | | return projectPlanInfoService.resubmitPlanInfo(form); |
| | | } |
| | | |
| | | @PostMapping("/savePlanInfo/{planRecordId}") |
| | | public Result savePlanInfo(@RequestBody ProjectPlanInfo item, @PathVariable("planRecordId") Integer planRecordId) { |
| | | return projectPlanInfoService.savePlanInfo(item, planRecordId); |
| | | } |
| | | |
| | | @PostMapping("/delayPlanInfo") |