📄 customer.java
字号:
package org.langsin.computer.vo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Customer generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Customer implements java.io.Serializable {
// Fields
private Integer customerid;
private Archives archives;
private String idcard;
private Date givertime;
private Date retaketime;
private String companyname;
private String phone;
private String mobilephone;
private String address;
private String linkman;
private String email;
private Set archiveses = new HashSet(0);
private Set products = new HashSet(0);
private Set accounts = new HashSet(0);
// Constructors
/** default constructor */
public Customer() {
}
/** minimal constructor */
public Customer(String idcard, String companyname, String phone, String mobilephone, String address, String linkman, String email) {
this.idcard = idcard;
this.companyname = companyname;
this.phone = phone;
this.mobilephone = mobilephone;
this.address = address;
this.linkman = linkman;
this.email = email;
}
/** full constructor */
public Customer(Archives archives, String idcard, Date givertime, Date retaketime, String companyname, String phone, String mobilephone, String address, String linkman, String email, Set archiveses, Set products, Set accounts) {
this.archives = archives;
this.idcard = idcard;
this.givertime = givertime;
this.retaketime = retaketime;
this.companyname = companyname;
this.phone = phone;
this.mobilephone = mobilephone;
this.address = address;
this.linkman = linkman;
this.email = email;
this.archiveses = archiveses;
this.products = products;
this.accounts = accounts;
}
// Property accessors
public Integer getCustomerid() {
return this.customerid;
}
public void setCustomerid(Integer customerid) {
this.customerid = customerid;
}
public Archives getArchives() {
return this.archives;
}
public void setArchives(Archives archives) {
this.archives = archives;
}
public String getIdcard() {
return this.idcard;
}
public void setIdcard(String idcard) {
this.idcard = idcard;
}
public Date getGivertime() {
return this.givertime;
}
public void setGivertime(Date givertime) {
this.givertime = givertime;
}
public Date getRetaketime() {
return this.retaketime;
}
public void setRetaketime(Date retaketime) {
this.retaketime = retaketime;
}
public String getCompanyname() {
return this.companyname;
}
public void setCompanyname(String companyname) {
this.companyname = companyname;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getMobilephone() {
return this.mobilephone;
}
public void setMobilephone(String mobilephone) {
this.mobilephone = mobilephone;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getLinkman() {
return this.linkman;
}
public void setLinkman(String linkman) {
this.linkman = linkman;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public Set getArchiveses() {
return this.archiveses;
}
public void setArchiveses(Set archiveses) {
this.archiveses = archiveses;
}
public Set getProducts() {
return this.products;
}
public void setProducts(Set products) {
this.products = products;
}
public Set getAccounts() {
return this.accounts;
}
public void setAccounts(Set accounts) {
this.accounts = accounts;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -