?? customer.java
字號(hào):
package com.yuanchung.sales.model.customer;
import java.util.HashSet;
import java.util.Set;
import com.yuanchung.sales.model.user.User;
/**
* Customer entity.
*
* @author MyEclipse Persistence Tools
*/
public class Customer implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = -1738242879886790318L;
private Integer id;
private User user;
private String customerName;
private String legalRepresent;
private String bizType;
private long registerCapital;
private String industryOf;
private Integer employeeMinNum;
private Integer employeeMaxNum;
private String regionOf;
private String communAddr;
private String phone;
private String fax;
private String zipCode;
private String webSite;
private String email;
private String honestGrade;
private String managerLevel;
private String breedVisualize;
private String customerState;
private String customerSource;
private String remark;
private String createTime;
private String employeeNum;
private String province;
private String city;
private String county;
private Integer flag;
private String inDate;
private String lastModifyTime;
private Integer modifyManId;
private String industryType;
private Set customerContacts = new HashSet(0);
private Set businessOpportunities = new HashSet(0);
//2009-02-20 add 數(shù)據(jù)范圍標(biāo)識(shí)
private String delRights = "n";
private String modifyRights = "n";
//end
// Constructors
/** default constructor */
public Customer() {
}
/** minimal constructor */
public Customer(User user, String customerName) {
this.user = user;
this.customerName = customerName;
}
/** full constructor */
public Customer(User user, String customerName, String legalRepresent,
String bizType, long registerCapital, String industryOf,
Integer employeeMinNum, Integer employeeMaxNum, String regionOf,
String communAddr, String phone, String fax, String zipCode,
String webSite, String email, String honestGrade,
String managerLevel, String breedVisualize, String customerState,
String customerSource, String remark, String createTime,
String employeeNum, String province, String city, String county,
Integer flag, String inDate, String lastModifyTime,
Integer modifyManId, String industryType, Set customerContacts,
Set businessOpportunities
) {
this.user = user;
this.customerName = customerName;
this.legalRepresent = legalRepresent;
this.bizType = bizType;
this.registerCapital = registerCapital;
this.industryOf = industryOf;
this.industryType = industryType;
this.employeeMinNum = employeeMinNum;
this.employeeMaxNum = employeeMaxNum;
this.regionOf = regionOf;
this.communAddr = communAddr;
this.phone = phone;
this.fax = fax;
this.zipCode = zipCode;
this.webSite = webSite;
this.email = email;
this.honestGrade = honestGrade;
this.managerLevel = managerLevel;
this.breedVisualize = breedVisualize;
this.customerState = customerState;
this.customerSource = customerSource;
this.remark = remark;
this.createTime = createTime;
this.employeeNum = employeeNum;
this.province = province;
this.city = city;
this.county = county;
this.flag = flag;
this.inDate = inDate;
this.lastModifyTime = lastModifyTime;
this.modifyManId = modifyManId;
this.customerContacts = customerContacts;
this.businessOpportunities = businessOpportunities;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getIndustryType() {
return industryType;
}
public void setIndustryType(String industryType) {
this.industryType = industryType;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getLegalRepresent() {
return this.legalRepresent;
}
public void setLegalRepresent(String legalRepresent) {
this.legalRepresent = legalRepresent;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public long getRegisterCapital() {
return this.registerCapital;
}
public void setRegisterCapital(long registerCapital) {
this.registerCapital = registerCapital;
}
public String getIndustryOf() {
return this.industryOf;
}
public void setIndustryOf(String industryOf) {
this.industryOf = industryOf;
}
public Integer getEmployeeMinNum() {
return this.employeeMinNum;
}
public void setEmployeeMinNum(Integer employeeMinNum) {
this.employeeMinNum = employeeMinNum;
}
public Integer getEmployeeMaxNum() {
return this.employeeMaxNum;
}
public void setEmployeeMaxNum(Integer employeeMaxNum) {
this.employeeMaxNum = employeeMaxNum;
}
public String getRegionOf() {
return this.regionOf;
}
public void setRegionOf(String regionOf) {
this.regionOf = regionOf;
}
public String getCommunAddr() {
return this.communAddr;
}
public void setCommunAddr(String communAddr) {
this.communAddr = communAddr;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getZipCode() {
return this.zipCode;
}
public void setZipCode(String zipCode) {
this.zipCode = zipCode;
}
public String getWebSite() {
return this.webSite;
}
public void setWebSite(String webSite) {
this.webSite = webSite;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHonestGrade() {
return this.honestGrade;
}
public void setHonestGrade(String honestGrade) {
this.honestGrade = honestGrade;
}
public String getManagerLevel() {
return this.managerLevel;
}
public void setManagerLevel(String managerLevel) {
this.managerLevel = managerLevel;
}
public String getBreedVisualize() {
return this.breedVisualize;
}
public void setBreedVisualize(String breedVisualize) {
this.breedVisualize = breedVisualize;
}
public String getCustomerState() {
return this.customerState;
}
public void setCustomerState(String customerState) {
this.customerState = customerState;
}
public String getCustomerSource() {
return this.customerSource;
}
public void setCustomerSource(String customerSource) {
this.customerSource = customerSource;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getEmployeeNum() {
return this.employeeNum;
}
public void setEmployeeNum(String employeeNum) {
this.employeeNum = employeeNum;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getCounty() {
return this.county;
}
public void setCounty(String county) {
this.county = county;
}
public Integer getFlag() {
return this.flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
public String getInDate() {
return this.inDate;
}
public void setInDate(String inDate) {
this.inDate = inDate;
}
public String getLastModifyTime() {
return this.lastModifyTime;
}
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
public Integer getModifyManId() {
return this.modifyManId;
}
public void setModifyManId(Integer modifyManId) {
this.modifyManId = modifyManId;
}
public Set getCustomerContacts() {
return this.customerContacts;
}
public void setCustomerContacts(Set customerContacts) {
this.customerContacts = customerContacts;
}
public Set getBusinessOpportunities() {
return this.businessOpportunities;
}
public void setBusinessOpportunities(Set businessOpportunities) {
this.businessOpportunities = businessOpportunities;
}
public String getDelRights() {
return delRights;
}
public void setDelRights(String delRights) {
this.delRights = delRights;
}
public String getModifyRights() {
return modifyRights;
}
public void setModifyRights(String modifyRights) {
this.modifyRights = modifyRights;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -