|
|
|
@ -149,14 +149,16 @@ public class EpdcEventsServiceImpl extends BaseServiceImpl<EpdcEventsDao, EpdcEv |
|
|
|
// 更新事件表审核状态
|
|
|
|
updateById(entity); |
|
|
|
|
|
|
|
EpdcEventsEntity eventsEntity = baseDao.selectById(dto.getId()); |
|
|
|
|
|
|
|
// 组装发送消息内容
|
|
|
|
EpdcInformationFormDTO informationFormDTO = new EpdcInformationFormDTO(); |
|
|
|
informationFormDTO.setUserId(entity.getUserId()); |
|
|
|
informationFormDTO.setContent(entity.getEventContent()); |
|
|
|
informationFormDTO.setUserId(eventsEntity.getUserId()); |
|
|
|
informationFormDTO.setContent(eventsEntity.getEventContent()); |
|
|
|
informationFormDTO.setTitle(EventsNoticeConstant.NOTICE_EVENT_NOT_PASSED); |
|
|
|
informationFormDTO.setType(EventsNoticeConstant.NOTICE_TYPE_AUDIT_NOTICE); |
|
|
|
informationFormDTO.setBusinessType(EventsNoticeConstant.NOTICE__BUSINESS_TYPE_EVENT); |
|
|
|
informationFormDTO.setBusinessId(entity.getId()); |
|
|
|
informationFormDTO.setBusinessId(eventsEntity.getId()); |
|
|
|
|
|
|
|
// 审核通过
|
|
|
|
if (EventIssueItemState.EVENT_REVIEW_PASS== dto.getEventState()) { |
|
|
|
|