📄 crmcontact.java
字号:
package com.csu.crm.common.vo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* CrmContact generated by MyEclipse Persistence Tools
*/
public class CrmContact implements java.io.Serializable {
// Fields
private String contactId;
private CrmEmployee crmEmployee;
private CrmCustomer crmCustomer;
private String contact;
private String sex;
private Date birth;
private String position;
private String tel;
private String mobile;
private String email;
private String intro;
private Date regDate;
private String description;
private Set crmCsFeedbacks = new HashSet(0);
private Set crmBses = new HashSet(0);
private Set crmCsComplaints = new HashSet(0);
// Constructors
/** default constructor */
public CrmContact() {
}
/** full constructor */
public CrmContact(CrmEmployee crmEmployee, CrmCustomer crmCustomer,
String contact, String sex, Date birth, String position,
String tel, String mobile, String email, String intro,
Date regDate, String description, Set crmCsFeedbacks, Set crmBses,
Set crmCsComplaints) {
this.crmEmployee = crmEmployee;
this.crmCustomer = crmCustomer;
this.contact = contact;
this.sex = sex;
this.birth = birth;
this.position = position;
this.tel = tel;
this.mobile = mobile;
this.email = email;
this.intro = intro;
this.regDate = regDate;
this.description = description;
this.crmCsFeedbacks = crmCsFeedbacks;
this.crmBses = crmBses;
this.crmCsComplaints = crmCsComplaints;
}
// Property accessors
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public CrmEmployee getCrmEmployee() {
return this.crmEmployee;
}
public void setCrmEmployee(CrmEmployee crmEmployee) {
this.crmEmployee = crmEmployee;
}
public CrmCustomer getCrmCustomer() {
return this.crmCustomer;
}
public void setCrmCustomer(CrmCustomer crmCustomer) {
this.crmCustomer = crmCustomer;
}
public String getContact() {
return this.contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Date getBirth() {
return this.birth;
}
public void setBirth(Date birth) {
this.birth = birth;
}
public String getPosition() {
return this.position;
}
public void setPosition(String position) {
this.position = position;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getIntro() {
return this.intro;
}
public void setIntro(String intro) {
this.intro = intro;
}
public Date getRegDate() {
return this.regDate;
}
public void setRegDate(Date regDate) {
this.regDate = regDate;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getCrmCsFeedbacks() {
return this.crmCsFeedbacks;
}
public void setCrmCsFeedbacks(Set crmCsFeedbacks) {
this.crmCsFeedbacks = crmCsFeedbacks;
}
public Set getCrmBses() {
return this.crmBses;
}
public void setCrmBses(Set crmBses) {
this.crmBses = crmBses;
}
public Set getCrmCsComplaints() {
return this.crmCsComplaints;
}
public void setCrmCsComplaints(Set crmCsComplaints) {
this.crmCsComplaints = crmCsComplaints;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -