CustomerListIn.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. package com.goafanti.customer.bo;
  2. public class CustomerListIn {
  3. /**
  4. * 客户ID
  5. */
  6. private String id;
  7. /** 客户类型 0-个人 1-单位**/
  8. private String type;
  9. /** 客户名称 **/
  10. private String name;
  11. /** 省 **/
  12. private String province;
  13. /** 市 **/
  14. private String city;
  15. /** 区 **/
  16. private String area;
  17. /** 开始时间 **/
  18. private String startDate;
  19. /** 结束时间 **/
  20. private String endDate;
  21. /** 客户状态 0-正常 1-注销 2-锁定**/
  22. private String status;
  23. /** 行业 **/
  24. private String industry;
  25. /** 共享类型 0-私有 1-公共 **/
  26. private String shareType;
  27. /** 营销员 ID **/
  28. private String aid;
  29. /** 社会性质 **/
  30. private String societyTag;
  31. /** 联系人 **/
  32. private String contacts;
  33. /** 联系人电话 **/
  34. private String contactMobile;
  35. /**
  36. * 创建时间
  37. */
  38. private String createTime;
  39. private String dataGrade;
  40. private Integer creditRating;
  41. private String departmentId;
  42. private Integer level;
  43. private String follow;
  44. private String iname;
  45. /**
  46. * 排序 0否 1转换倒序 2转换正序
  47. */
  48. private Integer sort;
  49. /** 外联 0否 1是 */
  50. private Integer channel;
  51. private String businessScope;
  52. private String intendedProject;
  53. /**
  54. * 企业信用代码
  55. */
  56. private String orgCode;
  57. public String getOrgCode() {
  58. return orgCode;
  59. }
  60. public void setOrgCode(String orgCode) {
  61. this.orgCode = orgCode;
  62. }
  63. public String getIntendedProject() {
  64. return intendedProject;
  65. }
  66. public void setIntendedProject(String intendedProject) {
  67. this.intendedProject = intendedProject;
  68. }
  69. public String getBusinessScope() {
  70. return businessScope;
  71. }
  72. public void setBusinessScope(String businessScope) {
  73. this.businessScope = businessScope;
  74. }
  75. public String getType() {
  76. return type;
  77. }
  78. public void setType(String type) {
  79. this.type = type;
  80. }
  81. public String getName() {
  82. return name;
  83. }
  84. public void setName(String name) {
  85. this.name = name;
  86. }
  87. public String getProvince() {
  88. return province;
  89. }
  90. public void setProvince(String province) {
  91. this.province = province;
  92. }
  93. public String getCity() {
  94. return city;
  95. }
  96. public void setCity(String city) {
  97. this.city = city;
  98. }
  99. public String getArea() {
  100. return area;
  101. }
  102. public void setArea(String area) {
  103. this.area = area;
  104. }
  105. public String getStartDate() {
  106. return startDate;
  107. }
  108. public void setStartDate(String startDate) {
  109. this.startDate = startDate;
  110. }
  111. public String getEndDate() {
  112. return endDate;
  113. }
  114. public void setEndDate(String endDate) {
  115. this.endDate = endDate;
  116. }
  117. public String getStatus() {
  118. return status;
  119. }
  120. public void setStatus(String status) {
  121. this.status = status;
  122. }
  123. public String getIndustry() {
  124. return industry;
  125. }
  126. public void setIndustry(String industry) {
  127. this.industry = industry;
  128. }
  129. public String getShareType() {
  130. return shareType;
  131. }
  132. public void setShareType(String shareType) {
  133. this.shareType = shareType;
  134. }
  135. public String getAid() {
  136. return aid;
  137. }
  138. public void setAid(String aid) {
  139. this.aid = aid;
  140. }
  141. public String getSocietyTag() {
  142. return societyTag;
  143. }
  144. public void setSocietyTag(String societyTag) {
  145. this.societyTag = societyTag;
  146. }
  147. public String getContacts() {
  148. return contacts;
  149. }
  150. public void setContacts(String contacts) {
  151. this.contacts = contacts;
  152. }
  153. public String getContactMobile() {
  154. return contactMobile;
  155. }
  156. public void setContactMobile(String contactMobile) {
  157. this.contactMobile = contactMobile;
  158. }
  159. public String getCreateTime() {
  160. return createTime;
  161. }
  162. public void setCreateTime(String createTime) {
  163. this.createTime = createTime;
  164. }
  165. public String getId() {
  166. return id;
  167. }
  168. public void setId(String id) {
  169. this.id = id;
  170. }
  171. public String getDataGrade() {
  172. return dataGrade;
  173. }
  174. public void setDataGrade(String dataGrade) {
  175. this.dataGrade = dataGrade;
  176. }
  177. public Integer getCreditRating() {
  178. return creditRating;
  179. }
  180. public void setCreditRating(Integer creditRating) {
  181. this.creditRating = creditRating;
  182. }
  183. public String getDepartmentId() {
  184. return departmentId;
  185. }
  186. public void setDepartmentId(String departmentId) {
  187. this.departmentId = departmentId;
  188. }
  189. public String getFollow() {
  190. return follow;
  191. }
  192. public void setFollow(String follow) {
  193. this.follow = follow;
  194. }
  195. public String getIname() {
  196. return iname;
  197. }
  198. public void setIname(String iname) {
  199. this.iname = iname;
  200. }
  201. public Integer getLevel() {
  202. return level;
  203. }
  204. public void setLevel(Integer level) {
  205. this.level = level;
  206. }
  207. public Integer getSort() {
  208. return sort;
  209. }
  210. public void setSort(Integer sort) {
  211. this.sort = sort;
  212. }
  213. public Integer getChannel() {
  214. return channel;
  215. }
  216. public void setChannel(Integer channel) {
  217. this.channel = channel;
  218. }
  219. }