📄 contactperson.java
字号:
package com.bjsxt.crm.model;
import java.util.Date;
/**
* ContactPerson generated by MyEclipse Persistence Tools
*/
public class ContactPerson implements java.io.Serializable {
// Fields
private Integer id;
private Customer TCustomer;
private String name;
private String sex;
private String grade;
private String responsibility;
private String term;
private String type;
private String department;
private String duty;
private String officePhone;
private String fax;
private String cellPhone;
private String email;
private String homePhone;
private String msn;
private String homeAddress;
private Date birthday;
private String preference;
private String description;
// Constructors
/** default constructor */
public ContactPerson() {
}
/** full constructor */
public ContactPerson(Customer TCustomer, String name, String sex, String grade, String responsibility, String term, String type, String department, String duty, String officePhone, String fax, String cellPhone, String email, String homePhone, String msn, String homeAddress, Date birthday, String preference, String description) {
this.TCustomer = TCustomer;
this.name = name;
this.sex = sex;
this.grade = grade;
this.responsibility = responsibility;
this.term = term;
this.type = type;
this.department = department;
this.duty = duty;
this.officePhone = officePhone;
this.fax = fax;
this.cellPhone = cellPhone;
this.email = email;
this.homePhone = homePhone;
this.msn = msn;
this.homeAddress = homeAddress;
this.birthday = birthday;
this.preference = preference;
this.description = description;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Customer getTCustomer() {
return this.TCustomer;
}
public void setTCustomer(Customer TCustomer) {
this.TCustomer = TCustomer;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getGrade() {
return this.grade;
}
public void setGrade(String grade) {
this.grade = grade;
}
public String getResponsibility() {
return this.responsibility;
}
public void setResponsibility(String responsibility) {
this.responsibility = responsibility;
}
public String getTerm() {
return this.term;
}
public void setTerm(String term) {
this.term = term;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDepartment() {
return this.department;
}
public void setDepartment(String department) {
this.department = department;
}
public String getDuty() {
return this.duty;
}
public void setDuty(String duty) {
this.duty = duty;
}
public String getOfficePhone() {
return this.officePhone;
}
public void setOfficePhone(String officePhone) {
this.officePhone = officePhone;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getCellPhone() {
return this.cellPhone;
}
public void setCellPhone(String cellPhone) {
this.cellPhone = cellPhone;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHomePhone() {
return this.homePhone;
}
public void setHomePhone(String homePhone) {
this.homePhone = homePhone;
}
public String getMsn() {
return this.msn;
}
public void setMsn(String msn) {
this.msn = msn;
}
public String getHomeAddress() {
return this.homeAddress;
}
public void setHomeAddress(String homeAddress) {
this.homeAddress = homeAddress;
}
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getPreference() {
return this.preference;
}
public void setPreference(String preference) {
this.preference = preference;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -