| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -193,6 +193,8 @@ public class UserResiInfoServiceImpl extends BaseServiceImpl<UserResiInfoDao, Us | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						public void saveUserResiInfo(UserResiInfoDTO userResiInfoDTO) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        //1:注册信息表新增数据
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							baseDao.insert(ConvertUtils.sourceToTarget(userResiInfoDTO, UserResiInfoEntity.class)); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							//更新该用户在该客户下的注册状态
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							userCustomerDao.updateRegistered(userResiInfoDTO.getCustomerId(), userResiInfoDTO.getUserId()); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        //2:角色表新增角色数据
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        UserRoleDTO userRoleDTO = new UserRoleDTO(); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        userRoleDTO.setCustomerId(userResiInfoDTO.getCustomerId()); | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  |