Skip to content

Commit

Permalink
初始化用户标签
Browse files Browse the repository at this point in the history
  • Loading branch information
javaKing-lgy committed Jan 3, 2025
1 parent c442445 commit b3ccb43
Showing 1 changed file with 0 additions and 95 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,99 +21,4 @@ public class UserDTO {
private Date createTime;
private Date updateTime;

@Override
public String toString() {
return "UserDTO{" +
"userId=" + userId +
", nickName='" + nickName + '\'' +
", trueName='" + trueName + '\'' +
", avatar='" + avatar + '\'' +
", sex=" + sex +
", workCity=" + workCity +
", bornCity=" + bornCity +
", bornDate=" + bornDate +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}

public Long getUserId() {
return userId;
}

public void setUserId(Long userId) {
this.userId = userId;
}

public String getNickName() {
return nickName;
}

public void setNickName(String nickName) {
this.nickName = nickName;
}

public String getTrueName() {
return trueName;
}

public void setTrueName(String trueName) {
this.trueName = trueName;
}

public String getAvatar() {
return avatar;
}

public void setAvatar(String avatar) {
this.avatar = avatar;
}

public Integer getSex() {
return sex;
}

public void setSex(Integer sex) {
this.sex = sex;
}

public Integer getWorkCity() {
return workCity;
}

public void setWorkCity(Integer workCity) {
this.workCity = workCity;
}

public Integer getBornCity() {
return bornCity;
}

public void setBornCity(Integer bornCity) {
this.bornCity = bornCity;
}

public Date getBornDate() {
return bornDate;
}

public void setBornDate(Date bornDate) {
this.bornDate = bornDate;
}

public Date getCreateTime() {
return createTime;
}

public void setCreateTime(Date createTime) {
this.createTime = createTime;
}

public Date getUpdateTime() {
return updateTime;
}

public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}

0 comments on commit b3ccb43

Please sign in to comment.