mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 12:43:56 +08:00
update:格式化代码
This commit is contained in:
+6
@@ -30,6 +30,12 @@ public interface SysUserTokenService extends BaseService<SysUserTokenEntity> {
|
|||||||
*/
|
*/
|
||||||
void logout(Long userId);
|
void logout(Long userId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改密码
|
||||||
|
*
|
||||||
|
* @param userId
|
||||||
|
* @param passwordDTO
|
||||||
|
*/
|
||||||
void changePassword(Long userId, PasswordDTO passwordDTO);
|
void changePassword(Long userId, PasswordDTO passwordDTO);
|
||||||
|
|
||||||
}
|
}
|
||||||
-2
@@ -104,8 +104,6 @@ public class SysUserTokenServiceImpl extends BaseServiceImpl<SysUserTokenDao, Sy
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void changePassword(Long userId, PasswordDTO passwordDTO) {
|
public void changePassword(Long userId, PasswordDTO passwordDTO) {
|
||||||
|
|
||||||
|
|
||||||
// 修改密码
|
// 修改密码
|
||||||
sysUserService.changePassword(userId, passwordDTO);
|
sysUserService.changePassword(userId, passwordDTO);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user