소스 검색

驳回接口驳回时间修改

zhanghang 3 년 전
부모
커밋
b75f3eb73d
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      report-service/src/main/java/com/lantone/report/facade/MedAppealExamineInfoManagementFacade.java

+ 3 - 0
report-service/src/main/java/com/lantone/report/facade/MedAppealExamineInfoManagementFacade.java

@@ -21,6 +21,8 @@ import com.lantone.report.enums.ExampleStatusEnum;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
+import java.util.Date;
+
 /**
  * @Description:申述记录
  * @Author: songxl
@@ -254,6 +256,7 @@ public class MedAppealExamineInfoManagementFacade {
         );
         AppealExamineInfo appealExamineInfo = new AppealExamineInfo();
         appealExamineInfo.setExampleStatus(ExampleStatusEnum.REJECT_EXAMPLE.getKey());
+        appealExamineInfo.setGmtCreate(new Date());
         appealExamineInfo.setRejectReason(rejectedVo.getRejectedReason());
         int appealExamineInfoUpdate = appealExamineInfoFacade.getBaseMapper().update(appealExamineInfo, new UpdateWrapper<AppealExamineInfo>()
                 .eq("is_deleted", IsDeleteEnum.N.getKey())