FollowListBo.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. public String getFollowId() {
  22. return followId;
  23. }
  24. public void setFollowId(String followId) {
  25. this.followId = followId;
  26. }
  27. public String getFollowTime() {
  28. return followTime;
  29. }
  30. public void setFollowTime(String followTime) {
  31. this.followTime = followTime;
  32. }
  33. public String getIdentityName() {
  34. return identityName;
  35. }
  36. public void setIdentityName(String identityName) {
  37. this.identityName = identityName;
  38. }
  39. public String getContacts() {
  40. return contacts;
  41. }
  42. public void setContacts(String contacts) {
  43. this.contacts = contacts;
  44. }
  45. public String getContactMobile() {
  46. return contactMobile;
  47. }
  48. public void setContactMobile(String contactMobile) {
  49. this.contactMobile = contactMobile;
  50. }
  51. public String getResult() {
  52. return result;
  53. }
  54. public void setResult(String result) {
  55. this.result = result;
  56. }
  57. public String getAdminName() {
  58. return adminName;
  59. }
  60. public void setAdminName(String adminName) {
  61. this.adminName = adminName;
  62. }
  63. public String getContactType() {
  64. return contactType;
  65. }
  66. public void setContactType(String contactType) {
  67. this.contactType = contactType;
  68. }
  69. public String getUfbId() {
  70. return ufbId;
  71. }
  72. public void setUfbId(String ufbId) {
  73. this.ufbId = ufbId;
  74. }
  75. }