📄 customer.java
字号:
package com.magic.mobile.vo;
// default package
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Customer entity. @author MyEclipse Persistence Tools
*/
public class Customer implements java.io.Serializable {
// Fields
private Long customerId;
private String idType;
private String idNumber;
private String customerName;
private Date customerBirthday;
private String customerSex;
private String customerAddress;
private Set tusers = new HashSet(0);
// Constructors
/** default constructor */
public Customer() {
}
/** minimal constructor */
public Customer(String idType, String idNumber, String customerName) {
this.idType = idType;
this.idNumber = idNumber;
this.customerName = customerName;
}
/** full constructor */
public Customer(String idType, String idNumber, String customerName, Date customerBirthday, String customerSex, String customerAddress, Set tusers) {
this.idType = idType;
this.idNumber = idNumber;
this.customerName = customerName;
this.customerBirthday = customerBirthday;
this.customerSex = customerSex;
this.customerAddress = customerAddress;
this.tusers = tusers;
}
// Property accessors
public Long getCustomerId() {
return this.customerId;
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
public String getIdType() {
return this.idType;
}
public void setIdType(String idType) {
this.idType = idType;
}
public String getIdNumber() {
return this.idNumber;
}
public void setIdNumber(String idNumber) {
this.idNumber = idNumber;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public Date getCustomerBirthday() {
return this.customerBirthday;
}
public void setCustomerBirthday(Date customerBirthday) {
this.customerBirthday = customerBirthday;
}
public String getCustomerSex() {
return this.customerSex;
}
public void setCustomerSex(String customerSex) {
this.customerSex = customerSex;
}
public String getCustomerAddress() {
return this.customerAddress;
}
public void setCustomerAddress(String customerAddress) {
this.customerAddress = customerAddress;
}
public Set getTusers() {
return this.tusers;
}
public void setTusers(Set tusers) {
this.tusers = tusers;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -