FollowListBo.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. public String getFollowId() {
  18. return followId;
  19. }
  20. public void setFollowId(String followId) {
  21. this.followId = followId;
  22. }
  23. public String getFollowTime() {
  24. return followTime;
  25. }
  26. public void setFollowTime(String followTime) {
  27. this.followTime = followTime;
  28. }
  29. public String getIdentityName() {
  30. return identityName;
  31. }
  32. public void setIdentityName(String identityName) {
  33. this.identityName = identityName;
  34. }
  35. public String getContacts() {
  36. return contacts;
  37. }
  38. public void setContacts(String contacts) {
  39. this.contacts = contacts;
  40. }
  41. public String getContactMobile() {
  42. return contactMobile;
  43. }
  44. public void setContactMobile(String contactMobile) {
  45. this.contactMobile = contactMobile;
  46. }
  47. public String getResult() {
  48. return result;
  49. }
  50. public void setResult(String result) {
  51. this.result = result;
  52. }
  53. public String getAdminName() {
  54. return adminName;
  55. }
  56. public void setAdminName(String adminName) {
  57. this.adminName = adminName;
  58. }
  59. }