package com.goafanti.common.model; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat.Shape; public class Customer { /** * 获取id */ private String id; /** * 跟单人 */ private String adminName; /** * 获取时间 */ private Date createTime; /** * 拥有者 */ private String aid; /** * 公司名称 */ private String companyName; /** * 客户类型 */ private Integer customerTyp; /** * 行业 */ private String companyIndustry; /** * 公司意向 */ private String companyIntention; /** * 公司地址 */ private String adress; /** * 客户名称 */ private String customerName; /** * 座机 */ private String mobile; /** * 手机电话 */ private String telNum; /** * 邮箱 */ private String email; /** * 部门 */ private String department; /** * qq */ private String qq; /** * 微信号 */ private String wechat; /** * 职位 */ private String customerPosition; /** * 备注 */ private String remark; /** * 省份 */ private String province; /** * 跟进情况 */ private String fllowSituation; /** * 性别 */ private Integer sex; /** * 客户状态 */ private String customerStatue; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getAdminName() { return adminName; } public void setAdminName(String adminName) { this.adminName = adminName; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getAid() { return aid; } public void setAid(String aid) { this.aid = aid; } public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public String getCompanyIndustry() { return companyIndustry; } public void setCompanyIndustry(String companyIndustry) { this.companyIndustry = companyIndustry; } public String getCompanyIntention() { return companyIntention; } public void setCompanyIntention(String companyIntention) { this.companyIntention = companyIntention; } public String getAdress() { return adress; } public void setAdress(String adress) { this.adress = adress; } public String getCustomerName() { return customerName; } public void setCustomerName(String customerName) { this.customerName = customerName; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getDepartment() { return department; } public void setDepartment(String department) { this.department = department; } 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 String getCustomerPosition() { return customerPosition; } public void setCustomerPosition(String customerPosition) { this.customerPosition = customerPosition; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getFllowSituation() { return fllowSituation; } public void setFllowSituation(String fllowSituation) { this.fllowSituation = fllowSituation; } @JsonFormat(shape = Shape.STRING) public Integer getSex() { return sex; } public void setSex(Integer sex) { this.sex = sex; } public String getCustomerStatue() { return customerStatue; } public void setCustomerStatue(String customerStatue) { this.customerStatue = customerStatue; } public String getTelNum() { return telNum; } public void setTelNum(String telNum) { this.telNum = telNum; } @JsonFormat(shape = Shape.STRING) public Integer getCustomerTyp() { return customerTyp; } public void setCustomerTyp(Integer customerTyp) { this.customerTyp = customerTyp; } @Override public String toString() { return "Customer [createTime=" + createTime + ", ownerId=" + aid + ", companyName=" + companyName + ", companyIndustry=" + companyIndustry + ", companyIntention=" + companyIntention + ", adress=" + adress + ", customerName=" + customerName + ", mobile=" + mobile + ", email=" + email + ", department=" + department + ", qq=" + qq + ", wechat=" + wechat + ", customerPosition=" + customerPosition + ", remark=" + remark + ", province=" + province + ", fllowSituation=" + fllowSituation + ", sex=" + sex + ", customerStatue=" + customerStatue + "]"; } }