2025-12-24 14:17:19 +08:00
|
|
|
package com.timeline.user.dto;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class UpdateUser {
|
|
|
|
|
private String username;
|
|
|
|
|
private String nickname;
|
|
|
|
|
private String email;
|
|
|
|
|
private String phone;
|
|
|
|
|
private String avatar;
|
|
|
|
|
private String description;
|
|
|
|
|
private String location;
|
|
|
|
|
private String tag;
|
2026-02-11 14:28:27 +08:00
|
|
|
|
|
|
|
|
public String getUsername() { return username; }
|
|
|
|
|
public void setUsername(String username) { this.username = username; }
|
|
|
|
|
public String getNickname() { return nickname; }
|
|
|
|
|
public void setNickname(String nickname) { this.nickname = nickname; }
|
|
|
|
|
public String getEmail() { return email; }
|
|
|
|
|
public void setEmail(String email) { this.email = email; }
|
|
|
|
|
public String getPhone() { return phone; }
|
|
|
|
|
public void setPhone(String phone) { this.phone = phone; }
|
|
|
|
|
public String getAvatar() { return avatar; }
|
|
|
|
|
public void setAvatar(String avatar) { this.avatar = avatar; }
|
|
|
|
|
public String getDescription() { return description; }
|
|
|
|
|
public void setDescription(String description) { this.description = description; }
|
|
|
|
|
public String getLocation() { return location; }
|
|
|
|
|
public void setLocation(String location) { this.location = location; }
|
|
|
|
|
public String getTag() { return tag; }
|
|
|
|
|
public void setTag(String tag) { this.tag = tag; }
|
2025-12-24 14:17:19 +08:00
|
|
|
}
|