📄 tbmember.java
字号:
package objectBean;
import java.util.HashSet;
import java.util.Set;
/**
* TbMember entity.
*
* @author MyEclipse Persistence Tools
*/
public class TbMember implements java.io.Serializable {
// Fields
private Long userId;
private String userName;
private String trueName;
private String password;
private String city;
private String address;
private String postcode;
private String cardNumber;
private String cardType;
private String tel;
private String email;
private Set tbOrders = new HashSet(0);
// Constructors
/** default constructor */
public TbMember() {
}
/** minimal constructor */
public TbMember(Long userId, String userName, String trueName,
String password, String city, String address, String postcode,
String cardNumber, String cardType, String tel, String email) {
this.userId = userId;
this.userName = userName;
this.trueName = trueName;
this.password = password;
this.city = city;
this.address = address;
this.postcode = postcode;
this.cardNumber = cardNumber;
this.cardType = cardType;
this.tel = tel;
this.email = email;
}
/** full constructor */
public TbMember(Long userId, String userName, String trueName,
String password, String city, String address, String postcode,
String cardNumber, String cardType, String tel, String email,
Set tbOrders) {
this.userId = userId;
this.userName = userName;
this.trueName = trueName;
this.password = password;
this.city = city;
this.address = address;
this.postcode = postcode;
this.cardNumber = cardNumber;
this.cardType = cardType;
this.tel = tel;
this.email = email;
this.tbOrders = tbOrders;
}
// Property accessors
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getTrueName() {
return this.trueName;
}
public void setTrueName(String trueName) {
this.trueName = trueName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPostcode() {
return this.postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getCardNumber() {
return this.cardNumber;
}
public void setCardNumber(String cardNumber) {
this.cardNumber = cardNumber;
}
public String getCardType() {
return this.cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public Set getTbOrders() {
return this.tbOrders;
}
public void setTbOrders(Set tbOrders) {
this.tbOrders = tbOrders;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -