diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/feign/EbtpRsmsApi.java b/src/main/java/com/chinaunicom/mall/ebtp/project/feign/EbtpRsmsApi.java index 1973e6c..5a1c1f2 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/feign/EbtpRsmsApi.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/feign/EbtpRsmsApi.java @@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; +import java.time.LocalDateTime; import java.util.List; import java.util.Map; @@ -31,11 +32,15 @@ public interface EbtpRsmsApi { * 复制评委会成员信息 * @param oldRoomId 被复制的评审室ID * @param newRoomId 新的评审室ID + * @param startTime 开始时间 + * @param endTime 结束时间 * @return 返回结果 */ @GetMapping("/v1/jury/copy") BaseResponse copyJury(@RequestParam(name = "oldRoomId") String oldRoomId, - @RequestParam(name = "newRoomId") String newRoomId); + @RequestParam(name = "newRoomId") String newRoomId, + @RequestParam(name = "startTime") LocalDateTime startTime, + @RequestParam(name = "endTime") LocalDateTime endTime); /** * 根据标段ID集合查询是否能够发起异常处理 diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/projectreevaluation/service/impl/ProjectReEvaluationServiceImpl.java b/src/main/java/com/chinaunicom/mall/ebtp/project/projectreevaluation/service/impl/ProjectReEvaluationServiceImpl.java index fcc9e8b..237241d 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/projectreevaluation/service/impl/ProjectReEvaluationServiceImpl.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/projectreevaluation/service/impl/ProjectReEvaluationServiceImpl.java @@ -418,7 +418,8 @@ public class ProjectReEvaluationServiceImpl extends BaseServiceImpl juryResponse = ebtpRsmsApi.copyJury(evaluation.getAssessId(),againRoomVO.getRoomId()); + BaseResponse juryResponse = ebtpRsmsApi.copyJury(evaluation.getAssessId(),againRoomVO.getRoomId(), + evaluation.getEvaluationStartTime(),evaluation.getEvaluationEndTime()); ProjectExceptionEnum.FRAME_EXCEPTION_ERROR.customValidName(juryResponse.getMessage(),!juryResponse.isSuccess()); }