CustomerIn.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.goafanti.customer.bo;
  2. public class CustomerIn {
  3. /** 客户名 **/
  4. private String customerName;
  5. /** 客户类型 **/
  6. private String customerTyp;
  7. /** 共享类型 **/
  8. private String shareTyp;
  9. /** 联系人姓名 **/
  10. private String contactName;
  11. /** 联系人号码 **/
  12. private String contactTel;
  13. /** 客户状态 **/
  14. private String customerStatus;
  15. /** 意向服务 **/
  16. private String companyIntention;
  17. /** 跟进进度 **/
  18. private String followSituation;
  19. /** 跟单人 **/
  20. private String adminName;
  21. public String getCustomerName() {
  22. return customerName;
  23. }
  24. public void setCustomerName(String customerName) {
  25. this.customerName = customerName;
  26. }
  27. public String getCustomerTyp() {
  28. return customerTyp;
  29. }
  30. public void setCustomerTyp(String customerTyp) {
  31. this.customerTyp = customerTyp;
  32. }
  33. public String getShareTyp() {
  34. return shareTyp;
  35. }
  36. public void setShareTyp(String shareTyp) {
  37. this.shareTyp = shareTyp;
  38. }
  39. public String getContactName() {
  40. return contactName;
  41. }
  42. public void setContactName(String contactName) {
  43. this.contactName = contactName;
  44. }
  45. public String getContactTel() {
  46. return contactTel;
  47. }
  48. public void setContactTel(String contactTel) {
  49. this.contactTel = contactTel;
  50. }
  51. public String getCustomerStatus() {
  52. return customerStatus;
  53. }
  54. public void setCustomerStatus(String customerStatus) {
  55. this.customerStatus = customerStatus;
  56. }
  57. public String getCompanyIntention() {
  58. return companyIntention;
  59. }
  60. public void setCompanyIntention(String companyIntention) {
  61. this.companyIntention = companyIntention;
  62. }
  63. public String getFollowSituation() {
  64. return followSituation;
  65. }
  66. public void setFollowSituation(String followSituation) {
  67. this.followSituation = followSituation;
  68. }
  69. public String getAdminName() {
  70. return adminName;
  71. }
  72. public void setAdminName(String adminName) {
  73. this.adminName = adminName;
  74. }
  75. }