📄 customer.java
字号:
package com.bjsxt.crm.model;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Customer generated by MyEclipse Persistence Tools
*/
public class Customer implements java.io.Serializable {
// Fields
private Integer id;
private User TUser;
private Customer TCustomer;
private String customerCategory;
private String name;
private String shortName;
private String sn;
private String evaluation;
private String creditRating;
private String type;
private String industry;
private String relationRating;
private String source;
private String currentStatus;
private String country;
private String phone;
private String province;
private String fax;
private String city;
private String site;
private String postcode;
private String address;
private String description;
private Date createTime;
private Byte shared;
private String employeeSize;
private String sex;
private Set TContactpersons = new HashSet(0);
private Set TCustomers = new HashSet(0);
// Constructors
/** default constructor */
public Customer() {
}
/** minimal constructor */
public Customer(String customerCategory) {
this.customerCategory = customerCategory;
}
/** full constructor */
public Customer(User TUser, Customer TCustomer, String customerCategory, String name, String shortName, String sn, String evaluation, String creditRating, String type, String industry, String relationRating, String source, String currentStatus, String country, String phone, String province, String fax, String city, String site, String postcode, String address, String description, Date createTime, Byte shared, String employeeSize, String sex, Set TContactpersons, Set TCustomers) {
this.TUser = TUser;
this.TCustomer = TCustomer;
this.customerCategory = customerCategory;
this.name = name;
this.shortName = shortName;
this.sn = sn;
this.evaluation = evaluation;
this.creditRating = creditRating;
this.type = type;
this.industry = industry;
this.relationRating = relationRating;
this.source = source;
this.currentStatus = currentStatus;
this.country = country;
this.phone = phone;
this.province = province;
this.fax = fax;
this.city = city;
this.site = site;
this.postcode = postcode;
this.address = address;
this.description = description;
this.createTime = createTime;
this.shared = shared;
this.employeeSize = employeeSize;
this.sex = sex;
this.TContactpersons = TContactpersons;
this.TCustomers = TCustomers;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public User getTUser() {
return this.TUser;
}
public void setTUser(User TUser) {
this.TUser = TUser;
}
public Customer getTCustomer() {
return this.TCustomer;
}
public void setTCustomer(Customer TCustomer) {
this.TCustomer = TCustomer;
}
public String getCustomerCategory() {
return this.customerCategory;
}
public void setCustomerCategory(String customerCategory) {
this.customerCategory = customerCategory;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public String getSn() {
return this.sn;
}
public void setSn(String sn) {
this.sn = sn;
}
public String getEvaluation() {
return this.evaluation;
}
public void setEvaluation(String evaluation) {
this.evaluation = evaluation;
}
public String getCreditRating() {
return this.creditRating;
}
public void setCreditRating(String creditRating) {
this.creditRating = creditRating;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getIndustry() {
return this.industry;
}
public void setIndustry(String industry) {
this.industry = industry;
}
public String getRelationRating() {
return this.relationRating;
}
public void setRelationRating(String relationRating) {
this.relationRating = relationRating;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getCurrentStatus() {
return this.currentStatus;
}
public void setCurrentStatus(String currentStatus) {
this.currentStatus = currentStatus;
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getSite() {
return this.site;
}
public void setSite(String site) {
this.site = site;
}
public String getPostcode() {
return this.postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Byte getShared() {
return this.shared;
}
public void setShared(Byte shared) {
this.shared = shared;
}
public String getEmployeeSize() {
return this.employeeSize;
}
public void setEmployeeSize(String employeeSize) {
this.employeeSize = employeeSize;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Set getTContactpersons() {
return this.TContactpersons;
}
public void setTContactpersons(Set TContactpersons) {
this.TContactpersons = TContactpersons;
}
public Set getTCustomers() {
return this.TCustomers;
}
public void setTCustomers(Set TCustomers) {
this.TCustomers = TCustomers;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -