| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- 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 + "]";
- }
-
-
-
-
-
-
- }
|