• 大小: 0.01M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: 其他
  • 标签: 其他  

资源简介

8f8c313c51b9106c29d322b46802692f.7z

资源截图

代码片段和文件信息

package com.techbirds.vo;

public class User {
private Integer userId;
private String username;
private String password;
private String mobile;
private String email;

public Integer getUserId() {
return userId;
}

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

public String getUsername() {
return username;
}

public void setUsername(String username) {
this.username = username;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

public String getMobile() {
return mobile;
}

public void setMobile(String mobile) {
this.mobile = mobile;
}

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}

@Override
public String toString() {
return “User [email=“ + email + “ mobile=“ + mobile + “ password=“
+ password + “ userId=“ + userId + “ userName=“ + username
+ “]“;
}
}

评论

共有 条评论