CustomerListIn.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. private Integer nature;
  58. public Integer getNature() {
  59. return nature;
  60. }
  61. public void setNature(Integer nature) {
  62. this.nature = nature;
  63. }
  64. public String getOrgCode() {
  65. return orgCode;
  66. }
  67. public void setOrgCode(String orgCode) {
  68. this.orgCode = orgCode;
  69. }
  70. public String getIntendedProject() {
  71. return intendedProject;
  72. }
  73. public void setIntendedProject(String intendedProject) {
  74. this.intendedProject = intendedProject;
  75. }
  76. public String getBusinessScope() {
  77. return businessScope;
  78. }
  79. public void setBusinessScope(String businessScope) {
  80. this.businessScope = businessScope;
  81. }
  82. public String getType() {
  83. return type;
  84. }
  85. public void setType(String type) {
  86. this.type = type;
  87. }
  88. public String getName() {
  89. return name;
  90. }
  91. public void setName(String name) {
  92. this.name = name;
  93. }
  94. public String getProvince() {
  95. return province;
  96. }
  97. public void setProvince(String province) {
  98. this.province = province;
  99. }
  100. public String getCity() {
  101. return city;
  102. }
  103. public void setCity(String city) {
  104. this.city = city;
  105. }
  106. public String getArea() {
  107. return area;
  108. }
  109. public void setArea(String area) {
  110. this.area = area;
  111. }
  112. public String getStartDate() {
  113. return startDate;
  114. }
  115. public void setStartDate(String startDate) {
  116. this.startDate = startDate;
  117. }
  118. public String getEndDate() {
  119. return endDate;
  120. }
  121. public void setEndDate(String endDate) {
  122. this.endDate = endDate;
  123. }
  124. public String getStatus() {
  125. return status;
  126. }
  127. public void setStatus(String status) {
  128. this.status = status;
  129. }
  130. public String getIndustry() {
  131. return industry;
  132. }
  133. public void setIndustry(String industry) {
  134. this.industry = industry;
  135. }
  136. public String getShareType() {
  137. return shareType;
  138. }
  139. public void setShareType(String shareType) {
  140. this.shareType = shareType;
  141. }
  142. public String getAid() {
  143. return aid;
  144. }
  145. public void setAid(String aid) {
  146. this.aid = aid;
  147. }
  148. public String getSocietyTag() {
  149. return societyTag;
  150. }
  151. public void setSocietyTag(String societyTag) {
  152. this.societyTag = societyTag;
  153. }
  154. public String getContacts() {
  155. return contacts;
  156. }
  157. public void setContacts(String contacts) {
  158. this.contacts = contacts;
  159. }
  160. public String getContactMobile() {
  161. return contactMobile;
  162. }
  163. public void setContactMobile(String contactMobile) {
  164. this.contactMobile = contactMobile;
  165. }
  166. public String getCreateTime() {
  167. return createTime;
  168. }
  169. public void setCreateTime(String createTime) {
  170. this.createTime = createTime;
  171. }
  172. public String getId() {
  173. return id;
  174. }
  175. public void setId(String id) {
  176. this.id = id;
  177. }
  178. public String getDataGrade() {
  179. return dataGrade;
  180. }
  181. public void setDataGrade(String dataGrade) {
  182. this.dataGrade = dataGrade;
  183. }
  184. public Integer getCreditRating() {
  185. return creditRating;
  186. }
  187. public void setCreditRating(Integer creditRating) {
  188. this.creditRating = creditRating;
  189. }
  190. public String getDepartmentId() {
  191. return departmentId;
  192. }
  193. public void setDepartmentId(String departmentId) {
  194. this.departmentId = departmentId;
  195. }
  196. public String getFollow() {
  197. return follow;
  198. }
  199. public void setFollow(String follow) {
  200. this.follow = follow;
  201. }
  202. public String getIname() {
  203. return iname;
  204. }
  205. public void setIname(String iname) {
  206. this.iname = iname;
  207. }
  208. public Integer getLevel() {
  209. return level;
  210. }
  211. public void setLevel(Integer level) {
  212. this.level = level;
  213. }
  214. public Integer getSort() {
  215. return sort;
  216. }
  217. public void setSort(Integer sort) {
  218. this.sort = sort;
  219. }
  220. public Integer getChannel() {
  221. return channel;
  222. }
  223. public void setChannel(Integer channel) {
  224. this.channel = channel;
  225. }
  226. }