|  |  | @ -48,6 +48,7 @@ import com.elink.esua.epdc.dto.epdc.form.EpdcUserPointsFormDTO; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.dao.ActInfoDao; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.dao.ActUserLogDao; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.dao.ActUserRelationDao; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.entity.ActInfoEntity; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.entity.ActUserLogEntity; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.entity.ActUserPointsLogEntity; | 
			
		
	
		
			
				
					|  |  |  | import com.elink.esua.epdc.modules.activity.entity.ActUserRelationEntity; | 
			
		
	
	
		
			
				
					|  |  | @ -473,6 +474,13 @@ public class ActUserRelationServiceImpl extends BaseServiceImpl<ActUserRelationD | 
			
		
	
		
			
				
					|  |  |  |                 actUserLog.setOperationTime(new Date()); | 
			
		
	
		
			
				
					|  |  |  |                 actUserLogDao.insert(actUserLog); | 
			
		
	
		
			
				
					|  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |             // 审核不通过,活动的报名人数减少
 | 
			
		
	
		
			
				
					|  |  |  |             if (!NumConstant.ONE_STR.equals(actUserDefaultState)) { | 
			
		
	
		
			
				
					|  |  |  |                 ActInfoEntity actInfoEntity = new ActInfoEntity(); | 
			
		
	
		
			
				
					|  |  |  |                 actInfoEntity.setId(actInfoDTO.getId()); | 
			
		
	
		
			
				
					|  |  |  |                 actInfoEntity.setSignupNum(actInfoDTO.getSignupNum() - data.size()); | 
			
		
	
		
			
				
					|  |  |  |                 actInfoService.updateById(actInfoEntity); | 
			
		
	
		
			
				
					|  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |         } else { | 
			
		
	
		
			
				
					|  |  |  |             return new Result().ok("该活动暂时没有未审核的志愿者"); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
	
		
			
				
					|  |  | 
 |