|
@ -194,10 +194,6 @@ public class ActUserRelationServiceImpl extends BaseServiceImpl<ActUserRelationD |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 发送审核消息 |
|
|
* 发送审核消息 |
|
|
* <p> |
|
|
|
|
|
* <li>活动报名审核通过:通知信息busines_id字段,填入活动的id</li> |
|
|
|
|
|
* <li>活动报名审核不通过:通知信息busines_id字段,填入活动用户日志的id</li> |
|
|
|
|
|
* </p> |
|
|
|
|
|
* |
|
|
* |
|
|
* @param actUserRelationEntity 用户活动关系 |
|
|
* @param actUserRelationEntity 用户活动关系 |
|
|
* @param actUserLogId 用户活动日志id |
|
|
* @param actUserLogId 用户活动日志id |
|
@ -211,14 +207,13 @@ public class ActUserRelationServiceImpl extends BaseServiceImpl<ActUserRelationD |
|
|
if (ActUserRelationStatusConstant.APPROVED.equals(actUserRelationEntity.getStatus())) { |
|
|
if (ActUserRelationStatusConstant.APPROVED.equals(actUserRelationEntity.getStatus())) { |
|
|
informationFormDTO.setTitle(HeartNoticeConstant.NOTICE_SIGN_UP_PASSED); |
|
|
informationFormDTO.setTitle(HeartNoticeConstant.NOTICE_SIGN_UP_PASSED); |
|
|
informationFormDTO.setBusinessType(HeartNoticeConstant.NOTICE__BUSINESS_TYPE_ACT_SUCCESS); |
|
|
informationFormDTO.setBusinessType(HeartNoticeConstant.NOTICE__BUSINESS_TYPE_ACT_SUCCESS); |
|
|
informationFormDTO.setBusinessId(actUserRelationEntity.getActId()); |
|
|
|
|
|
} else if (ActUserRelationStatusConstant.NOT_APPROVED.equals(actUserRelationEntity.getStatus())) { |
|
|
} else if (ActUserRelationStatusConstant.NOT_APPROVED.equals(actUserRelationEntity.getStatus())) { |
|
|
informationFormDTO.setTitle(HeartNoticeConstant.NOTICE_SIGN_UP_NOT_PASSED); |
|
|
informationFormDTO.setTitle(HeartNoticeConstant.NOTICE_SIGN_UP_NOT_PASSED); |
|
|
informationFormDTO.setBusinessType(HeartNoticeConstant.NOTICE__BUSINESS_TYPE_ACT_FAILURE); |
|
|
informationFormDTO.setBusinessType(HeartNoticeConstant.NOTICE__BUSINESS_TYPE_ACT_FAILURE); |
|
|
informationFormDTO.setBusinessId(actUserLogId); |
|
|
|
|
|
} else { |
|
|
} else { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
informationFormDTO.setBusinessId(actUserRelationEntity.getActId()); |
|
|
informationFormDTO.setUserId(actUserRelationEntity.getUserId()); |
|
|
informationFormDTO.setUserId(actUserRelationEntity.getUserId()); |
|
|
informationFormDTO.setType(HeartNoticeConstant.NOTICE_TYPE_AUDIT_NOTICE); |
|
|
informationFormDTO.setType(HeartNoticeConstant.NOTICE_TYPE_AUDIT_NOTICE); |
|
|
|
|
|
|
|
|