Commit c5a5871c authored by huyuchen's avatar huyuchen

huyc 部门根节点数值修改

parent 04c3e418
......@@ -60,7 +60,7 @@ public interface SysUserMapper extends BaseMapper<SysUser> {
* @param id 用户ID
* @return userVo
*/
UserVO getUserVoById(Long id);
UserVO getUserVoById(String id);
/**
* 查询用户列表
......
......@@ -77,7 +77,7 @@ public interface SysUserService extends IService<SysUser> {
* @param id 用户ID
* @return 用户信息
*/
UserVO getUserVoById(Long id);
UserVO getUserVoById(String id);
/**
* 查询上级部门的用户信息
......
......@@ -150,7 +150,7 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
* @return 用户信息
*/
@Override
public UserVO getUserVoById(Long id) {
public UserVO getUserVoById(String id) {
return baseMapper.getUserVoById(id);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment