Browse Source

【初心互助】【活动时间到,已报名进行自动审核,并发通知】-王公峰-2020-06-04

feature/dangjian
wanggongfeng 6 years ago
parent
commit
803a943061
  1. 5
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/java/com/elink/esua/epdc/modules/activity/service/impl/ActUserRelationServiceImpl.java

5
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/java/com/elink/esua/epdc/modules/activity/service/impl/ActUserRelationServiceImpl.java

@ -471,7 +471,10 @@ public class ActUserRelationServiceImpl extends BaseServiceImpl<ActUserRelationD
actUserLog.setActUserRelationId(entity.getId());
actUserLog.setOperationType(actUserDefaultState);// 默认状态
actUserLog.setOperationTime(new Date());
actUserLogDao.insert(actUserLog);
int insertCount = actUserLogDao.insert(actUserLog);
if (insertCount > NumConstant.ZERO) {
this.insertUserInformation(entity, actUserLog.getId());
}
}
} else {
return new Result().ok("该活动暂时没有未审核的志愿者");

Loading…
Cancel
Save