package cn.itsource.crm.domain;
public class Customer {
private Long id;
/*
* 基本信息
*/
private String name;
// 0为女,1为男,2未知
private Integer gender;
private String address;
/*
* 联系方式
*/
private String tel;
private String email;
private String qq;
private String weChat;
/*
* 其他
*/
// 收入阶梯
private SystemDictionaryItem salaryLevel;
// 客户来源
private SystemDictionaryItem source;
// 职业
private SystemDictionaryItem job;
private Employee seller;//营销人员
// 0 正常, -1 作废
private Integer status = 0;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getGender() {
return gender;
}
public void setGender(Integer gender) {
this.gender = gender;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getQq() {
return qq;
}
public void setQq(String qq) {
this.qq = qq;
}
public String getWeChat() {
return weChat;
}
public void setWeChat(String weChat) {
this.weChat = weChat;
}
public SystemDictionaryItem getSalaryLevel() {
return salaryLevel;
}
public void setSalaryLevel(SystemDictionaryItem salaryLevel) {
this.salaryLevel = salaryLevel;
}
public SystemDictionaryItem getSource() {
return source;
}
public void setSource(SystemDictionaryItem source) {
this.source = source;
}
public SystemDictionaryItem getJob() {
return job;
}
public void setJob(SystemDictionaryItem job) {
this.job = job;
}
public Employee getSeller() {
return seller;
}
public void setSeller(Employee seller) {
this.seller = seller;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String toString() {
return "Customer [id=" + id + ", name=" + name + ", gender=" + gender
+ ", address=" + address + ", tel=" + tel + ", email=" + email
+ ", qq=" + qq + ", weChat=" + weChat + ", salaryLevel="
+ salaryLevel + ", source=" + source + ", job=" + job
+ ", seller=" + seller + ", status=" + status + "]";
}
}
最近下载更多
彭斌java LV6
2022年12月2日
wanglinddad LV55
2022年4月20日
wangyang520 LV6
2022年4月17日
487948123 LV8
2022年4月13日
crofsun LV8
2022年4月5日
7z7z7z LV5
2022年3月21日
lywang LV7
2021年12月12日
wuhaigang LV9
2021年10月20日
a1323617295 LV5
2020年12月17日
kook_82 LV9
2020年12月1日

最近浏览