| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package com.goafanti.customer.bo;
- public class FollowListBo {
- /** 跟进记录ID **/
- private String followId;
-
- /** 跟进时间 **/
- private String followTime;
-
- /** 客户名 **/
- private String identityName;
-
- /** 联系人 **/
- private String contacts;
-
- /** 联系电话 **/
- private String contactMobile;
-
- /** 跟进结果 **/
- private String result;
-
- /** 拜访人姓名 **/
- private String adminName;
-
- /** 拜访方式 **/
- private String contactType;
-
- /** user_follow_business ID **/
- private String ufbId;
-
- public String getFollowId() {
- return followId;
- }
- public void setFollowId(String followId) {
- this.followId = followId;
- }
- public String getFollowTime() {
- return followTime;
- }
- public void setFollowTime(String followTime) {
- this.followTime = followTime;
- }
- public String getIdentityName() {
- return identityName;
- }
- public void setIdentityName(String identityName) {
- this.identityName = identityName;
- }
- public String getContacts() {
- return contacts;
- }
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- public String getContactMobile() {
- return contactMobile;
- }
- public void setContactMobile(String contactMobile) {
- this.contactMobile = contactMobile;
- }
- public String getResult() {
- return result;
- }
- public void setResult(String result) {
- this.result = result;
- }
- public String getAdminName() {
- return adminName;
- }
- public void setAdminName(String adminName) {
- this.adminName = adminName;
- }
- public String getContactType() {
- return contactType;
- }
- public void setContactType(String contactType) {
- this.contactType = contactType;
- }
- public String getUfbId() {
- return ufbId;
- }
- public void setUfbId(String ufbId) {
- this.ufbId = ufbId;
- }
- }
|