Browse Source

time一致

dev_shibei_match
yinzuomei 4 years ago
parent
commit
f57da00616
  1. 2
      epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/service/impl/ResiEventServiceImpl.java

2
epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/service/impl/ResiEventServiceImpl.java

@ -185,6 +185,7 @@ public class ResiEventServiceImpl extends BaseServiceImpl<ResiEventDao, ResiEven
publishLog.setActionCode(ResiEventAction.PUBLISH.getCode()); publishLog.setActionCode(ResiEventAction.PUBLISH.getCode());
publishLog.setActionDesc(ResiEventAction.PUBLISH.getDesc()); publishLog.setActionDesc(ResiEventAction.PUBLISH.getDesc());
publishLog.setOperateTime(resiEventEntity.getCreatedTime()); publishLog.setOperateTime(resiEventEntity.getCreatedTime());
publishLog.setCreatedTime(resiEventEntity.getCreatedTime());
resiEventOperationLogDao.insert(publishLog); resiEventOperationLogDao.insert(publishLog);
//9、返回事件id //9、返回事件id
ResiEventIdDTO resiEventIdDTO=new ResiEventIdDTO(); ResiEventIdDTO resiEventIdDTO=new ResiEventIdDTO();
@ -324,6 +325,7 @@ public class ResiEventServiceImpl extends BaseServiceImpl<ResiEventDao, ResiEven
reCallLog.setActionCode(ResiEventAction.RECALL.getCode()); reCallLog.setActionCode(ResiEventAction.RECALL.getCode());
reCallLog.setActionDesc(ResiEventAction.RECALL.getDesc()); reCallLog.setActionDesc(ResiEventAction.RECALL.getDesc());
reCallLog.setOperateTime(resiEventEntity.getLatestOperatedTime()); reCallLog.setOperateTime(resiEventEntity.getLatestOperatedTime());
reCallLog.setCreatedTime(resiEventEntity.getLatestOperatedTime());
resiEventOperationLogDao.insert(reCallLog); resiEventOperationLogDao.insert(reCallLog);
} }

Loading…
Cancel
Save