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