feat: There is no way the user jwt
This commit is contained in:
@@ -106,6 +106,8 @@ public interface UserEODao extends BaseMapper<UserEO> {
|
||||
*/
|
||||
UserEO selectOrgByPrimaryKey(String usid);
|
||||
|
||||
List<UserEO> getUser(String usid);
|
||||
|
||||
Integer selectOrgCountByPrimaryKey(String usid);
|
||||
|
||||
UserEO selectRoleMessageByPrimaryKey(String usid);
|
||||
|
||||
@@ -71,6 +71,8 @@ public interface IUserEOService extends IService<UserEO> {
|
||||
|
||||
public UserEO getOrgIdByUserId(String userId);
|
||||
|
||||
public List<UserEO> getUser(String userId);
|
||||
|
||||
public UserEO getUserByLoginNameNotDeleted(String userName);
|
||||
|
||||
|
||||
|
||||
@@ -428,6 +428,11 @@ public class UserEOServiceImpl extends ServiceImpl<UserEODao, UserEO> implements
|
||||
return this.baseMapper.get(userId);
|
||||
}
|
||||
|
||||
@Transactional(readOnly = true, rollbackFor = Exception.class)
|
||||
public List<UserEO> getUser(String usid){
|
||||
return this.baseMapper.getUser(usid);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @Author liwenxuan
|
||||
|
||||
@@ -397,6 +397,13 @@
|
||||
AND usid !=#{usid}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="getUser" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List"/>
|
||||
from TS_USER
|
||||
where valid_flag=0 AND usid =#{usid}
|
||||
</select>
|
||||
<!-- 根据用户ID获取用户信息及角色、组织机构信息 -->
|
||||
<select id="getUserWithRoles" resultMap="UserRoleMap" parameterType="java.lang.String">
|
||||
select
|
||||
|
||||
Reference in New Issue
Block a user