This commit is contained in:
zt
2025-09-28 12:31:24 +08:00
parent fa625aff6d
commit eb6a7f2373
8 changed files with 86 additions and 60 deletions

View File

@ -70,4 +70,9 @@ public class UserDTO implements Serializable {
*/
private Date createTime;
/**
* 头像
*/
private String avatarUrl;
}

View File

@ -130,4 +130,9 @@ public interface UserService {
*/
String selectAvatarById(Long userId);
/**
* 通过用户id查询头像
*/
UserDTO selectUser(Long userId);
}