| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.goafanti.customer.bo;
- public class CustomerIn {
- /** 客户名 **/
- private String customerName;
-
- /** 客户类型 **/
- private String customerTyp;
-
- /** 共享类型 **/
- private String shareTyp;
-
- /** 联系人姓名 **/
- private String contactName;
-
- /** 联系人号码 **/
- private String contactTel;
-
- /** 客户状态 **/
- private String customerStatus;
-
- /** 意向服务 **/
- private String companyIntention;
-
- /** 跟进进度 **/
- private String followSituation;
-
- /** 跟单人 **/
- private String adminName;
- public String getCustomerName() {
- return customerName;
- }
- public void setCustomerName(String customerName) {
- this.customerName = customerName;
- }
- public String getCustomerTyp() {
- return customerTyp;
- }
- public void setCustomerTyp(String customerTyp) {
- this.customerTyp = customerTyp;
- }
- public String getShareTyp() {
- return shareTyp;
- }
- public void setShareTyp(String shareTyp) {
- this.shareTyp = shareTyp;
- }
- public String getContactName() {
- return contactName;
- }
- public void setContactName(String contactName) {
- this.contactName = contactName;
- }
- public String getContactTel() {
- return contactTel;
- }
- public void setContactTel(String contactTel) {
- this.contactTel = contactTel;
- }
- public String getCustomerStatus() {
- return customerStatus;
- }
- public void setCustomerStatus(String customerStatus) {
- this.customerStatus = customerStatus;
- }
- public String getCompanyIntention() {
- return companyIntention;
- }
- public void setCompanyIntention(String companyIntention) {
- this.companyIntention = companyIntention;
- }
- public String getFollowSituation() {
- return followSituation;
- }
- public void setFollowSituation(String followSituation) {
- this.followSituation = followSituation;
- }
- public String getAdminName() {
- return adminName;
- }
- public void setAdminName(String adminName) {
- this.adminName = adminName;
- }
-
- }
|