update 补全通用用户服务接口注释

This commit is contained in:
疯狂的狮子li
2021-11-04 19:00:49 +08:00
parent 53dd9a35a0
commit 19b7f0747a
2 changed files with 6 additions and 4 deletions

View File

@ -47,6 +47,7 @@ public interface ISysUserService extends IService<SysUser>, IUserService {
* @param userName 用户名
* @return 用户对象信息
*/
@Override
SysUser selectUserByUserName(String userName);
/**
@ -55,6 +56,7 @@ public interface ISysUserService extends IService<SysUser>, IUserService {
* @param userId 用户ID
* @return 用户对象信息
*/
@Override
SysUser selectUserById(Long userId);
/**