update 优化 统一用词

This commit is contained in:
疯狂的狮子Li
2026-01-09 11:52:28 +08:00
parent 3d243474bd
commit 91f1025c0d
14 changed files with 38 additions and 38 deletions

View File

@@ -79,7 +79,7 @@ public class SysLogininforController extends BaseController {
}
@SaCheckPermission("monitor:logininfor:unlock")
@Log(title = "户解锁", businessType = BusinessType.OTHER)
@Log(title = "户解锁", businessType = BusinessType.OTHER)
@RepeatSubmit()
@GetMapping("/unlock/{userName}")
public R<Void> unlock(@PathVariable("userName") String userName) {

View File

@@ -203,10 +203,10 @@ public class RemoteUserServiceImpl implements RemoteUserService {
}
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userId 用户ID
* @return 用户
* @return 用户
*/
@Override
public String selectUserNameById(Long userId) {
@@ -225,10 +225,10 @@ public class RemoteUserServiceImpl implements RemoteUserService {
}
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userIds 用户ID 多个用逗号隔开
* @return 用户
* @return 用户
*/
@Override
public String selectNicknameByIds(String userIds) {

View File

@@ -219,26 +219,26 @@ public interface ISysUserService {
int deleteUserByIds(Long[] userIds);
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userId 用户ID
* @return 用户
* @return 用户
*/
String selectUserNameById(Long userId);
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userId 用户ID
* @return 用户
* @return 用户
*/
String selectNicknameById(Long userId);
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userIds 用户ID
* @return 用户
* @return 用户
*/
String selectNicknameByIds(String userIds);

View File

@@ -586,10 +586,10 @@ public class SysUserServiceImpl implements ISysUserService {
}
/**
* 通过用户ID查询用户
* 通过用户ID查询用户
*
* @param userId 用户ID
* @return 用户
* @return 用户
*/
@Cacheable(cacheNames = CacheNames.SYS_USER_NAME, key = "#userId")
@Override