|
|
@@ -0,0 +1,244 @@
|
|
|
+package com.goafanti.customer.bo;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+public class CustomerBo {
|
|
|
+ /**
|
|
|
+ * 客户类型(1-个人用户,2-公司用户)
|
|
|
+ */
|
|
|
+ private String customerTyp;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分享类型(1-个人用户,2-公共用户)
|
|
|
+ */
|
|
|
+ private Integer shareTyp;
|
|
|
+ /**
|
|
|
+ * 公司意向
|
|
|
+ */
|
|
|
+ private String companyIntention;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private Date createTime;
|
|
|
+ /**
|
|
|
+ * 跟进进度(0-已发项目介绍资料,1-已约面谈,2-已发合同计划书,3-已报价,4-已发合同,5-已签合同,6-面谈中,7-已面签)
|
|
|
+ */
|
|
|
+ private String followSituation;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 客户状态(0-新客户,1-意向客户,2-重点客户,3-面谈客户,4-签单客户,5-被拒绝客户)
|
|
|
+ */
|
|
|
+ private String customerStatue;
|
|
|
+ /**
|
|
|
+ * 个人客户姓名
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+ /**
|
|
|
+ * 性别(0-男,1-女)
|
|
|
+ */
|
|
|
+ private String sex;
|
|
|
+ /**
|
|
|
+ * 座机号码
|
|
|
+ */
|
|
|
+ private String mobile;
|
|
|
+ /**
|
|
|
+ * 手机号
|
|
|
+ */
|
|
|
+ private String telNum;
|
|
|
+ /**
|
|
|
+ * 电子邮件
|
|
|
+ */
|
|
|
+ private String email;
|
|
|
+ /**
|
|
|
+ * qq
|
|
|
+ */
|
|
|
+ private String qq;
|
|
|
+ /**
|
|
|
+ * 微信
|
|
|
+ */
|
|
|
+ private String wechat;
|
|
|
+ /**
|
|
|
+ * 部门
|
|
|
+ */
|
|
|
+ private String depatrment;
|
|
|
+ /**
|
|
|
+ * 职位
|
|
|
+ */
|
|
|
+ private String customerPosition;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remarks;
|
|
|
+ /**
|
|
|
+ *公司名称
|
|
|
+ */
|
|
|
+ private String companyName;
|
|
|
+ /**
|
|
|
+ * 归属省份
|
|
|
+ */
|
|
|
+ private String locationProvince;
|
|
|
+ /**
|
|
|
+ * 行业
|
|
|
+ */
|
|
|
+ private String companyIndustry;
|
|
|
+ /**
|
|
|
+ * 归属城市
|
|
|
+ */
|
|
|
+ private String locationCity;
|
|
|
+ /**
|
|
|
+ * 归属地区
|
|
|
+ */
|
|
|
+ private String locationArea;
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ private String adress;
|
|
|
+ public String getCustomerTyp() {
|
|
|
+ return customerTyp;
|
|
|
+ }
|
|
|
+ public void setCustomerTyp(String customerTyp) {
|
|
|
+ this.customerTyp = customerTyp;
|
|
|
+ }
|
|
|
+ public Integer getShareTyp() {
|
|
|
+ return shareTyp;
|
|
|
+ }
|
|
|
+ public void setShareTyp(Integer shareTyp) {
|
|
|
+ this.shareTyp = shareTyp;
|
|
|
+ }
|
|
|
+ public String getCompanyIntention() {
|
|
|
+ return companyIntention;
|
|
|
+ }
|
|
|
+ public void setCompanyIntention(String companyIntention) {
|
|
|
+ this.companyIntention = companyIntention;
|
|
|
+ }
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+ public String getFollowSituation() {
|
|
|
+ return followSituation;
|
|
|
+ }
|
|
|
+ public void setFollowSituation(String followSituation) {
|
|
|
+ this.followSituation = followSituation;
|
|
|
+ }
|
|
|
+ public String getCustomerStatue() {
|
|
|
+ return customerStatue;
|
|
|
+ }
|
|
|
+ public void setCustomerStatue(String customerStatue) {
|
|
|
+ this.customerStatue = customerStatue;
|
|
|
+ }
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+ public String getSex() {
|
|
|
+ return sex;
|
|
|
+ }
|
|
|
+ public void setSex(String sex) {
|
|
|
+ this.sex = sex;
|
|
|
+ }
|
|
|
+ public String getMobile() {
|
|
|
+ return mobile;
|
|
|
+ }
|
|
|
+ public void setMobile(String mobile) {
|
|
|
+ this.mobile = mobile;
|
|
|
+ }
|
|
|
+ public String getTelNum() {
|
|
|
+ return telNum;
|
|
|
+ }
|
|
|
+ public void setTelNum(String telNum) {
|
|
|
+ this.telNum = telNum;
|
|
|
+ }
|
|
|
+ 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 String getDepatrment() {
|
|
|
+ return depatrment;
|
|
|
+ }
|
|
|
+ public void setDepatrment(String depatrment) {
|
|
|
+ this.depatrment = depatrment;
|
|
|
+ }
|
|
|
+ public String getCustomerPosition() {
|
|
|
+ return customerPosition;
|
|
|
+ }
|
|
|
+ public void setCustomerPosition(String customerPosition) {
|
|
|
+ this.customerPosition = customerPosition;
|
|
|
+ }
|
|
|
+ public String getRemarks() {
|
|
|
+ return remarks;
|
|
|
+ }
|
|
|
+ public void setRemarks(String remarks) {
|
|
|
+ this.remarks = remarks;
|
|
|
+ }
|
|
|
+ public String getCompanyName() {
|
|
|
+ return companyName;
|
|
|
+ }
|
|
|
+ public void setCompanyName(String companyName) {
|
|
|
+ this.companyName = companyName;
|
|
|
+ }
|
|
|
+ public String getLocationProvince() {
|
|
|
+ return locationProvince;
|
|
|
+ }
|
|
|
+ public void setLocationProvince(String locationProvince) {
|
|
|
+ this.locationProvince = locationProvince;
|
|
|
+ }
|
|
|
+ public String getCompanyIndustry() {
|
|
|
+ return companyIndustry;
|
|
|
+ }
|
|
|
+ public void setCompanyIndustry(String companyIndustry) {
|
|
|
+ this.companyIndustry = companyIndustry;
|
|
|
+ }
|
|
|
+ public String getLocationCity() {
|
|
|
+ return locationCity;
|
|
|
+ }
|
|
|
+ public void setLocationCity(String locationCity) {
|
|
|
+ this.locationCity = locationCity;
|
|
|
+ }
|
|
|
+ public String getLocationArea() {
|
|
|
+ return locationArea;
|
|
|
+ }
|
|
|
+ public void setLocationArea(String locationArea) {
|
|
|
+ this.locationArea = locationArea;
|
|
|
+ }
|
|
|
+ public String getAdress() {
|
|
|
+ return adress;
|
|
|
+ }
|
|
|
+ public void setAdress(String adress) {
|
|
|
+ this.adress = adress;
|
|
|
+ }
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "CustomerBo [customerTyp=" + customerTyp + ", shareTyp=" + shareTyp + ", companyIntention="
|
|
|
+ + companyIntention + ", createTime=" + createTime + ", followSituation=" + followSituation
|
|
|
+ + ", customerStatue=" + customerStatue + ", name=" + name + ", sex=" + sex + ", mobile=" + mobile
|
|
|
+ + ", telNum=" + telNum + ", email=" + email + ", qq=" + qq + ", wechat=" + wechat + ", depatrment="
|
|
|
+ + depatrment + ", customerPosition=" + customerPosition + ", remarks=" + remarks + ", companyName="
|
|
|
+ + companyName + ", locationProvince=" + locationProvince + ", companyIndustry=" + companyIndustry
|
|
|
+ + ", locationCity=" + locationCity + ", locationArea=" + locationArea + ", adress=" + adress + "]";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|