fuliqi
2024-11-29 3adc66dee9660cf10e40abfdf52113306c7d34f3
business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java
@@ -89,4 +89,14 @@
    public Result planLog(@PathVariable("id") Integer projectPlanRecordId) {
        return projectPlanExamineRecordService.planLog(projectPlanRecordId);
    }
    @PostMapping("/saveExamine")
    public Result saveExamine(@RequestBody ProjectPlanExamineRecordForm form) {
        return projectPlanExamineRecordService.saveExamine(form);
    }
    @PostMapping("/replyExamine")
    public Result replyExamine(@RequestBody ProjectPlanExamineRecordForm form) {
        return projectPlanExamineRecordService.replyExamine(form);
    }
}