多租户模式修改

This commit is contained in:
qiankunpingtai
2019-04-28 16:18:16 +08:00
parent 9f6902f53d
commit 2de009d464
6 changed files with 61 additions and 53 deletions

View File

@@ -657,21 +657,6 @@ public class UserService {
return list;
}
/**
* 通过用户名获取用户列表
* */
public List<User> getUserListByUserName(String userName)throws Exception{
List<User> list =null;
try{
list=userMapperEx.getUserListByUserNameOrLoginName(userName,null);
}catch(Exception e){
logger.error("异常码[{}],异常提示[{}],异常[{}]",
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
ExceptionConstants.DATA_READ_FAIL_MSG);
}
return list;
}
/**
* 通过登录名获取用户列表
* */