Browse Source

审核通过通知修改

feature/dangjian
曲树通 6 years ago
parent
commit
7a4bc249e6
  1. 6
      esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/java/com/elink/esua/epdc/service/impl/VolunteerInfoServiceImpl.java

6
esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/java/com/elink/esua/epdc/service/impl/VolunteerInfoServiceImpl.java

@ -340,11 +340,11 @@ public class VolunteerInfoServiceImpl extends BaseServiceImpl<VolunteerInfoDao,
private void sendInfo(VolunteerInfoDTO volunteerInfoDTO) {
EpdcInformationFormDTO informationFormDTO = new EpdcInformationFormDTO();
// 审核通过
// 审核通过
if (NumConstant.TWO_STR.equals(volunteerInfoDTO.getAuditStatus())) {
informationFormDTO.setTitle(VolunteerInfoNoticeConstant.NOTICE_CERTIFICATION_PASSED);
} else {
informationFormDTO.setTitle(VolunteerInfoNoticeConstant.NOTICE_CERTIFICATION_NOT_PASSED);
} else {
informationFormDTO.setTitle(VolunteerInfoNoticeConstant.NOTICE_CERTIFICATION_PASSED);
}
informationFormDTO.setContent(volunteerInfoDTO.getFailureReason());
informationFormDTO.setUserId(volunteerInfoDTO.getUserId());

Loading…
Cancel
Save