?? customercontact.java
字號:
package com.yuanchung.sales.model.customer;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import com.yuanchung.sales.model.user.User;
/**
* CustomerContact entity.
*
* @author MyEclipse Persistence Tools
*/
public class CustomerContact implements java.io.Serializable {
// Fields
private Integer id;
private User user;
private Customer customer;
private String name;
private String satulation;
private String domicile;
private String birthday;
private String education;
private String position;
private String mobilePhone;
private String assistant;
private String assiPhone;
private String comPhone;
private String email;
private String msn;
private String fax;
private String homeAddr;
private String homePhone;
private String interests;
private String characters;
private String familyName;
private Integer flag;
private String lastModifyTime;
private Integer modifyManId;
private Integer isWine;
private Integer isSmoke;
private Date inDate;
private String departMent;
private String entertainment;
private String remark;
private Set activityTasks = new HashSet(0);
private Set contactBusiopports = new HashSet(0);
private Set events = new HashSet(0);
// Constructors
/** default constructor */
public CustomerContact() {
}
/** minimal constructor */
public CustomerContact(User user, Date inDate, String entertainment) {
this.user = user;
this.inDate = inDate;
this.entertainment = entertainment;
}
/** full constructor */
public CustomerContact(User user, Customer customer, String name,
String satulation, String domicile, String birthday,
String education, String position, String mobilePhone,
String assistant, String assiPhone, String comPhone, String email,
String msn, String fax, String homeAddr, String homePhone,
String interests, String characters, String familyName,
Integer flag, String lastModifyTime, Integer modifyManId,
Integer isWine, Integer isSmoke, Date inDate, String departMent,
String entertainment, Set activityTasks, Set contactBusiopports
) {
this.user = user;
this.customer = customer;
this.name = name;
this.satulation = satulation;
this.domicile = domicile;
this.birthday = birthday;
this.education = education;
this.position = position;
this.mobilePhone = mobilePhone;
this.assistant = assistant;
this.assiPhone = assiPhone;
this.comPhone = comPhone;
this.email = email;
this.msn = msn;
this.fax = fax;
this.homeAddr = homeAddr;
this.homePhone = homePhone;
this.interests = interests;
this.characters = characters;
this.familyName = familyName;
this.flag = flag;
this.lastModifyTime = lastModifyTime;
this.modifyManId = modifyManId;
this.isWine = isWine;
this.isSmoke = isSmoke;
this.inDate = inDate;
this.departMent = departMent;
this.entertainment = entertainment;
this.activityTasks = activityTasks;
this.contactBusiopports = contactBusiopports;
this.events = events;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public Customer getCustomer() {
return this.customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSatulation() {
return this.satulation;
}
public void setSatulation(String satulation) {
this.satulation = satulation;
}
public String getDomicile() {
return this.domicile;
}
public void setDomicile(String domicile) {
this.domicile = domicile;
}
public String getBirthday() {
return this.birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getEducation() {
return this.education;
}
public void setEducation(String education) {
this.education = education;
}
public String getPosition() {
return this.position;
}
public void setPosition(String position) {
this.position = position;
}
public String getMobilePhone() {
return this.mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public String getAssistant() {
return this.assistant;
}
public void setAssistant(String assistant) {
this.assistant = assistant;
}
public String getAssiPhone() {
return this.assiPhone;
}
public void setAssiPhone(String assiPhone) {
this.assiPhone = assiPhone;
}
public String getComPhone() {
return this.comPhone;
}
public void setComPhone(String comPhone) {
this.comPhone = comPhone;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getMsn() {
return this.msn;
}
public void setMsn(String msn) {
this.msn = msn;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getHomeAddr() {
return this.homeAddr;
}
public void setHomeAddr(String homeAddr) {
this.homeAddr = homeAddr;
}
public String getHomePhone() {
return this.homePhone;
}
public void setHomePhone(String homePhone) {
this.homePhone = homePhone;
}
public String getInterests() {
return this.interests;
}
public void setInterests(String interests) {
this.interests = interests;
}
public String getCharacters() {
return this.characters;
}
public void setCharacters(String characters) {
this.characters = characters;
}
public String getFamilyName() {
return this.familyName;
}
public void setFamilyName(String familyName) {
this.familyName = familyName;
}
public Integer getFlag() {
return this.flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
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 Integer getIsWine() {
return this.isWine;
}
public void setIsWine(Integer isWine) {
this.isWine = isWine;
}
public Integer getIsSmoke() {
return this.isSmoke;
}
public void setIsSmoke(Integer isSmoke) {
this.isSmoke = isSmoke;
}
public Date getInDate() {
return this.inDate;
}
public void setInDate(Date inDate) {
this.inDate = inDate;
}
public String getDepartMent() {
return this.departMent;
}
public void setDepartMent(String departMent) {
this.departMent = departMent;
}
public String getEntertainment() {
return this.entertainment;
}
public void setEntertainment(String entertainment) {
this.entertainment = entertainment;
}
public Set getActivityTasks() {
return this.activityTasks;
}
public void setActivityTasks(Set activityTasks) {
this.activityTasks = activityTasks;
}
public Set getContactBusiopports() {
return this.contactBusiopports;
}
public void setContactBusiopports(Set contactBusiopports) {
this.contactBusiopports = contactBusiopports;
}
public Set getEvents() {
return this.events;
}
public void setEvents(Set events) {
this.events = events;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -