📄 customer.java
字号:
package com.bjsxt.crm.model;
import java.util.Date;
public class Customer {
private int id;
// ------ 基本属性 ------ //
//客户名称
private String name;
//助记名称
private String shortName;
//编号
private String sn;
//价值评估
private String evaluation;
//信用等级
private String creditRating;
//客户类型
private String type;
//行业类别
private String industry;
//关系等级
private String relationRating;
//客户来源
private String source;
//客户阶段
private String currentStatus;
//父客户
private Customer parent;
// ------- 联系方式 -------//
//国家
private String country;
//电话
private String phone;
//省份
private String province;
//传真
private String fax;
//城市
private String city;
//网站
private String site;
//邮政编码
private String postcode;
//地址
private String address;
//------- 备注 -------//
private String description;
// ------- 其它重要属性 -------//
//创建时间
private Date createTime;
//所有者
private User owner;
//是否共享(true:与其它人共享,false:私有)
private boolean shared = false;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getShortName() {
return shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public String getSn() {
return sn;
}
public void setSn(String sn) {
this.sn = sn;
}
public String getEvaluation() {
return evaluation;
}
public void setEvaluation(String evaluation) {
this.evaluation = evaluation;
}
public String getCreditRating() {
return creditRating;
}
public void setCreditRating(String creditRating) {
this.creditRating = creditRating;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getIndustry() {
return industry;
}
public void setIndustry(String industry) {
this.industry = industry;
}
public String getRelationRating() {
return relationRating;
}
public void setRelationRating(String relationRating) {
this.relationRating = relationRating;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getCurrentStatus() {
return currentStatus;
}
public void setCurrentStatus(String currentStatus) {
this.currentStatus = currentStatus;
}
public Customer getParent() {
return parent;
}
public void setParent(Customer parent) {
this.parent = parent;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getPostcode() {
return postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public User getOwner() {
return owner;
}
public void setOwner(User owner) {
this.owner = owner;
}
public boolean isShared() {
return shared;
}
public void setShared(boolean shared) {
this.shared = shared;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -