oss单点登录
This commit is contained in:
+6
@@ -31,6 +31,12 @@ public interface UserRepositoryInterface extends IService<UserEntity> {
|
||||
|
||||
|
||||
UserPo findByTopOrganizationIdAndUserAccount(UserDO userDO);
|
||||
|
||||
/**
|
||||
* 仅根据用户登录账号查询用户(不区分组织,SSO等场景使用)
|
||||
*/
|
||||
UserPo findByUserAccount(String userAccount);
|
||||
|
||||
UserPo getUserByDingUserId(String dingUserId);
|
||||
|
||||
UserPo selectUserShipperList(UserPo userPo);
|
||||
|
||||
+5
@@ -33,6 +33,11 @@ public interface UserMapper extends BaseMapper<UserEntity> {
|
||||
|
||||
UserPo findByTopOrganizationIdAndUserAccount(UserDO userDO);
|
||||
|
||||
/**
|
||||
* 仅根据用户登录账号查询用户(不区分组织,SSO等场景使用)
|
||||
*/
|
||||
UserPo findByUserAccount(@Param("userAccount") String userAccount);
|
||||
|
||||
UserPo getUserByDingUserId(@Param("dingUserId") String dingUserId);
|
||||
|
||||
UserPo findByTopOrganizationIdAndUserPhone(UserDO userDO);
|
||||
|
||||
+5
@@ -79,6 +79,11 @@ public class UserRepositoryImpl extends ServiceImpl<UserMapper,UserEntity> imple
|
||||
return userMapper.findByTopOrganizationIdAndUserAccount(userDO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UserPo findByUserAccount(String userAccount) {
|
||||
return userMapper.findByUserAccount(userAccount);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UserPo getUserByDingUserId(String dingUserId) {
|
||||
return userMapper.getUserByDingUserId(dingUserId);
|
||||
|
||||
+7
@@ -82,6 +82,13 @@ public class UserDomainService {
|
||||
return userRepositoryInterface.findByTopOrganizationIdAndUserAccount(userDO);
|
||||
}
|
||||
|
||||
/**
|
||||
* 仅根据用户登录账号查询用户(不区分组织,SSO等场景使用)
|
||||
*/
|
||||
public UserPo findByUserAccount(String userAccount) {
|
||||
return userRepositoryInterface.findByUserAccount(userAccount);
|
||||
}
|
||||
|
||||
public UserPo getUserByDingUserId(String dingUserId) {
|
||||
return userRepositoryInterface.getUserByDingUserId(dingUserId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user