FollowListBo.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.goafanti.customer.bo;
  2. public class FollowListBo {
  3. /** 跟进记录ID **/
  4. private String followId;
  5. /** 跟进时间 **/
  6. private String followTime;
  7. /** 客户名 **/
  8. private String identityName;
  9. /** 联系人 **/
  10. private String contacts;
  11. /** 联系电话 **/
  12. private String contactMobile;
  13. /** 跟进结果 **/
  14. private String result;
  15. /** 拜访人姓名 **/
  16. private String adminName;
  17. /** 拜访方式 **/
  18. private String contactType;
  19. /** user_follow_business ID **/
  20. private String ufbId;
  21. /** 跟进状态 **/
  22. private String followSituation;
  23. /** 客户状态 **/
  24. private String customerStatus;
  25. public String getFollowId() {
  26. return followId;
  27. }
  28. public void setFollowId(String followId) {
  29. this.followId = followId;
  30. }
  31. public String getFollowTime() {
  32. return followTime;
  33. }
  34. public void setFollowTime(String followTime) {
  35. this.followTime = followTime;
  36. }
  37. public String getIdentityName() {
  38. return identityName;
  39. }
  40. public void setIdentityName(String identityName) {
  41. this.identityName = identityName;
  42. }
  43. public String getContacts() {
  44. return contacts;
  45. }
  46. public void setContacts(String contacts) {
  47. this.contacts = contacts;
  48. }
  49. public String getContactMobile() {
  50. return contactMobile;
  51. }
  52. public void setContactMobile(String contactMobile) {
  53. this.contactMobile = contactMobile;
  54. }
  55. public String getResult() {
  56. return result;
  57. }
  58. public void setResult(String result) {
  59. this.result = result;
  60. }
  61. public String getAdminName() {
  62. return adminName;
  63. }
  64. public void setAdminName(String adminName) {
  65. this.adminName = adminName;
  66. }
  67. public String getContactType() {
  68. return contactType;
  69. }
  70. public void setContactType(String contactType) {
  71. this.contactType = contactType;
  72. }
  73. public String getUfbId() {
  74. return ufbId;
  75. }
  76. public void setUfbId(String ufbId) {
  77. this.ufbId = ufbId;
  78. }
  79. public String getFollowSituation() {
  80. return followSituation;
  81. }
  82. public void setFollowSituation(String followSituation) {
  83. this.followSituation = followSituation;
  84. }
  85. public String getCustomerStatus() {
  86. return customerStatus;
  87. }
  88. public void setCustomerStatus(String customerStatus) {
  89. this.customerStatus = customerStatus;
  90. }
  91. }