|
@@ -11,9 +11,7 @@ import cn.cslg.pas.factorys.businessFactory.Business;
|
|
import cn.cslg.pas.factorys.businessFactory.BusinessFactory;
|
|
import cn.cslg.pas.factorys.businessFactory.BusinessFactory;
|
|
import cn.cslg.pas.service.business.ProjectTaskService;
|
|
import cn.cslg.pas.service.business.ProjectTaskService;
|
|
import cn.cslg.pas.service.business.TaskHandleResultService;
|
|
import cn.cslg.pas.service.business.TaskHandleResultService;
|
|
-import cn.hutool.http.HttpStatus;
|
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
-import jakarta.validation.constraints.PastOrPresent;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -116,8 +114,8 @@ public class ProjectTaskController {
|
|
|
|
|
|
@Operation(summary = "添加报告开卷审核任务")
|
|
@Operation(summary = "添加报告开卷审核任务")
|
|
@PostMapping("/addReportOpenAuditTask")
|
|
@PostMapping("/addReportOpenAuditTask")
|
|
- public Response addReportOpenAuditTask(@RequestBody TortReportTaskDTO tortReportTaskDTO) throws Exception {
|
|
|
|
- Integer id = (Integer) projectTaskService.addReportOpenAuditTask(tortReportTaskDTO);
|
|
|
|
|
|
+ public Response addReportOpenAuditTask(@RequestBody ReportAuditTaskDTO reportAuditTaskDTO) throws Exception {
|
|
|
|
+ Integer id = (Integer) projectTaskService.addReportOpenAuditTask(reportAuditTaskDTO);
|
|
return Response.success(id);
|
|
return Response.success(id);
|
|
}
|
|
}
|
|
|
|
|