CustomerListOut.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. package com.goafanti.customer.bo;
  2. public class CustomerListOut extends CustomerListIn{
  3. /** 客户ID **/
  4. private String uid;
  5. /** 联系人 **/
  6. private String contacts;
  7. /** 联系电话 **/
  8. private String contactMobile;
  9. /** 创建时间 **/
  10. private String createTime;
  11. /** 转换时间 **/
  12. private String transferTime;
  13. /** 营销员姓名 **/
  14. private String adminName;
  15. /** 专家发布状态**/
  16. private String releaseStatus;
  17. /** 审核意见**/
  18. private String auditOpinion;
  19. /** 是否为咨询师 **/
  20. private String consultant;
  21. /** 专家审核状态 **/
  22. private String expertAudit ;
  23. /** 最后跟进时间 **/
  24. private String lastFollowTime;
  25. /** 最后签单时间 **/
  26. private String lastSignTime;
  27. /** 剩余私有时间 **/
  28. private String surplusFollowTime;
  29. /** 剩余签单时间 **/
  30. private String surplusSignTime;
  31. /** 资料所属人 **/
  32. private String informationMaintainer;
  33. private String shareType;
  34. private String mid;
  35. private Integer level;
  36. private String aName;
  37. /**
  38. * 指导意见 0无 1有
  39. */
  40. private Integer guidance;
  41. /**
  42. * 签单 0否 1是
  43. */
  44. private Integer signBills;
  45. /** 渠道 0否 1是 */
  46. private Integer channel;
  47. public Integer getChannel() {
  48. return channel;
  49. }
  50. public void setChannel(Integer channel) {
  51. this.channel = channel;
  52. }
  53. public String getAuditOpinion() {
  54. return auditOpinion;
  55. }
  56. public void setAuditOpinion(String auditOpinion) {
  57. this.auditOpinion = auditOpinion;
  58. }
  59. public String getReleaseStatus() {
  60. return releaseStatus;
  61. }
  62. public void setReleaseStatus(String releaseStatus) {
  63. this.releaseStatus = releaseStatus;
  64. }
  65. public String getUid() {
  66. return uid;
  67. }
  68. public void setUid(String uid) {
  69. this.uid = uid;
  70. }
  71. public String getContacts() {
  72. return contacts;
  73. }
  74. public void setContacts(String contacts) {
  75. this.contacts = contacts;
  76. }
  77. public String getContactMobile() {
  78. return contactMobile;
  79. }
  80. public void setContactMobile(String contactMobile) {
  81. this.contactMobile = contactMobile;
  82. }
  83. public String getCreateTime() {
  84. return createTime;
  85. }
  86. public void setCreateTime(String createTime) {
  87. this.createTime = createTime;
  88. }
  89. public String getTransferTime() {
  90. return transferTime;
  91. }
  92. public void setTransferTime(String transferTime) {
  93. this.transferTime = transferTime;
  94. }
  95. public String getAdminName() {
  96. return adminName;
  97. }
  98. public void setAdminName(String adminName) {
  99. this.adminName = adminName;
  100. }
  101. public String getExpertAudit() {
  102. return expertAudit;
  103. }
  104. public void setExpertAudit(String expertAudit) {
  105. this.expertAudit = expertAudit;
  106. }
  107. public String getConsultant() {
  108. return consultant;
  109. }
  110. public void setConsultant(String consultant) {
  111. this.consultant = consultant;
  112. }
  113. public String getLastFollowTime() {
  114. return lastFollowTime;
  115. }
  116. public void setLastFollowTime(String lastFollowTime) {
  117. this.lastFollowTime = lastFollowTime;
  118. }
  119. public String getLastSignTime() {
  120. return lastSignTime;
  121. }
  122. public void setLastSignTime(String lastSignTime) {
  123. this.lastSignTime = lastSignTime;
  124. }
  125. public String getSurplusFollowTime() {
  126. return surplusFollowTime;
  127. }
  128. public void setSurplusFollowTime(String surplusFollowTime) {
  129. this.surplusFollowTime = surplusFollowTime;
  130. }
  131. public String getSurplusSignTime() {
  132. return surplusSignTime;
  133. }
  134. public void setSurplusSignTime(String surplusSignTime) {
  135. this.surplusSignTime = surplusSignTime;
  136. }
  137. public String getInformationMaintainer() {
  138. return informationMaintainer;
  139. }
  140. public void setInformationMaintainer(String informationMaintainer) {
  141. this.informationMaintainer = informationMaintainer;
  142. }
  143. public String getShareType() {
  144. return shareType;
  145. }
  146. public void setShareType(String shareType) {
  147. this.shareType = shareType;
  148. }
  149. public String getMid() {
  150. return mid;
  151. }
  152. public void setMid(String mid) {
  153. this.mid = mid;
  154. }
  155. public Integer getLevel() {
  156. return level;
  157. }
  158. public void setLevel(Integer level) {
  159. this.level = level;
  160. }
  161. public String getaName() {
  162. return aName;
  163. }
  164. public void setaName(String aName) {
  165. this.aName = aName;
  166. }
  167. public Integer getGuidance() {
  168. return guidance;
  169. }
  170. public void setGuidance(Integer guidance) {
  171. this.guidance = guidance;
  172. }
  173. public Integer getSignBills() {
  174. return signBills;
  175. }
  176. public void setSignBills(Integer signBills) {
  177. this.signBills = signBills;
  178. }
  179. }