CustomerOut.java 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. package com.goafanti.customer.bo;
  2. public class CustomerOut {
  3. /**
  4. * 客户类型(1-个人用户,2-公司用户)
  5. */
  6. private Integer customerType;
  7. private String _customerType;
  8. /**
  9. * id
  10. */
  11. private String id;
  12. /**
  13. * 客户名
  14. */
  15. private String customerName;
  16. /**
  17. * cid
  18. */
  19. private String cid;
  20. /**
  21. * 分享类型(1-个人用户,2-公共用户)
  22. */
  23. private Integer shareType;
  24. private String _shareType;
  25. /**
  26. * 公司意向(0-发明专利、1-实用型新型专利、2-外观专利、3-软件著作权、4-知识产权贯标、5-高企认定、6-技术成果、7-技术需求、8-专家咨询)
  27. */
  28. private String companyIntention;
  29. private String _companyIntention;
  30. /**
  31. * 创建时间
  32. */
  33. private String createTime;
  34. /**
  35. * 跟进进度(0-已发项目介绍资料,1-已约面谈,2-已发合同计划书,3-已报价,4-已发合同,5-已签合同,6-面谈中,7-已面签)
  36. */
  37. private Integer followSituation;
  38. private String _followSituation;
  39. /**
  40. * 客户状态(0-新客户,1-意向客户,2-重点客户,3-面谈客户,4-签单客户,5-被拒绝客户)
  41. */
  42. private Integer customerStatus;
  43. private String _customerStatus;
  44. /**
  45. * 客户联系人名
  46. */
  47. private String contactName;
  48. /**
  49. * 性别(0-男,1-女)
  50. */
  51. private String sex;
  52. /**
  53. * 座机号码
  54. */
  55. private String mobile;
  56. /**
  57. * 手机号
  58. */
  59. private String telNum;
  60. /**
  61. * 电子邮件
  62. */
  63. private String email;
  64. /**
  65. * qq
  66. */
  67. private String qq;
  68. /**
  69. * 微信
  70. */
  71. private String wechat;
  72. /**
  73. * 部门
  74. */
  75. private String depatrment;
  76. /**
  77. * 职位
  78. */
  79. private String customerPosition;
  80. /**
  81. * 备注
  82. */
  83. private String remarks;
  84. /**
  85. *公司名称
  86. */
  87. private String companyName;
  88. /**
  89. * 归属省份
  90. */
  91. private String locationProvince;
  92. /**
  93. * 行业
  94. */
  95. private String companyIndustry;
  96. /**
  97. * 归属城市
  98. */
  99. private String locationCity;
  100. /**
  101. * 归属地区
  102. */
  103. private String locationArea;
  104. /**
  105. * 详细地址
  106. */
  107. private String adress;
  108. /**
  109. * 跟单人
  110. */
  111. private String adminName;
  112. /**
  113. * 跟单时间
  114. */
  115. private String followDate;
  116. /** 操作前客户状态 **/
  117. private String beforeCustomerStatus;
  118. /** 操作前意向服务 **/
  119. private String beforeCompanyIntention;
  120. /** 操作前跟进进度 **/
  121. private String beforeFollowSituation;
  122. /** 跟单人 **/
  123. private String beforeAdminName;
  124. public Integer getCustomerType() {
  125. return customerType;
  126. }
  127. public void setCustomerType(Integer customerType) {
  128. this.customerType = customerType;
  129. }
  130. public String get_customerType() {
  131. return _customerType;
  132. }
  133. public void set_customerType(String _customerType) {
  134. this._customerType = _customerType;
  135. }
  136. public String getId() {
  137. return id;
  138. }
  139. public void setId(String id) {
  140. this.id = id;
  141. }
  142. public String getCustomerName() {
  143. return customerName;
  144. }
  145. public void setCustomerName(String customerName) {
  146. this.customerName = customerName;
  147. }
  148. public String getCid() {
  149. return cid;
  150. }
  151. public void setCid(String cid) {
  152. this.cid = cid;
  153. }
  154. public Integer getShareType() {
  155. return shareType;
  156. }
  157. public void setShareType(Integer shareType) {
  158. this.shareType = shareType;
  159. }
  160. public String get_shareType() {
  161. return _shareType;
  162. }
  163. public void set_shareType(String _shareType) {
  164. this._shareType = _shareType;
  165. }
  166. public String getCompanyIntention() {
  167. return companyIntention;
  168. }
  169. public void setCompanyIntention(String companyIntention) {
  170. this.companyIntention = companyIntention;
  171. }
  172. public String get_companyIntention() {
  173. return _companyIntention;
  174. }
  175. public void set_companyIntention(String _companyIntention) {
  176. this._companyIntention = _companyIntention;
  177. }
  178. public String getCreateTime() {
  179. return createTime;
  180. }
  181. public void setCreateTime(String createTime) {
  182. this.createTime = createTime;
  183. }
  184. public Integer getFollowSituation() {
  185. return followSituation;
  186. }
  187. public void setFollowSituation(Integer followSituation) {
  188. this.followSituation = followSituation;
  189. }
  190. public String get_followSituation() {
  191. return _followSituation;
  192. }
  193. public void set_followSituation(String _followSituation) {
  194. this._followSituation = _followSituation;
  195. }
  196. public Integer getCustomerStatus() {
  197. return customerStatus;
  198. }
  199. public void setCustomerStatus(Integer customerStatus) {
  200. this.customerStatus = customerStatus;
  201. }
  202. public String get_customerStatus() {
  203. return _customerStatus;
  204. }
  205. public void set_customerStatus(String _customerStatus) {
  206. this._customerStatus = _customerStatus;
  207. }
  208. public String getContactName() {
  209. return contactName;
  210. }
  211. public void setContactName(String contactName) {
  212. this.contactName = contactName;
  213. }
  214. public String getSex() {
  215. return sex;
  216. }
  217. public void setSex(String sex) {
  218. this.sex = sex;
  219. }
  220. public String getMobile() {
  221. return mobile;
  222. }
  223. public void setMobile(String mobile) {
  224. this.mobile = mobile;
  225. }
  226. public String getTelNum() {
  227. return telNum;
  228. }
  229. public void setTelNum(String telNum) {
  230. this.telNum = telNum;
  231. }
  232. public String getEmail() {
  233. return email;
  234. }
  235. public void setEmail(String email) {
  236. this.email = email;
  237. }
  238. public String getQq() {
  239. return qq;
  240. }
  241. public void setQq(String qq) {
  242. this.qq = qq;
  243. }
  244. public String getWechat() {
  245. return wechat;
  246. }
  247. public void setWechat(String wechat) {
  248. this.wechat = wechat;
  249. }
  250. public String getDepatrment() {
  251. return depatrment;
  252. }
  253. public void setDepatrment(String depatrment) {
  254. this.depatrment = depatrment;
  255. }
  256. public String getCustomerPosition() {
  257. return customerPosition;
  258. }
  259. public void setCustomerPosition(String customerPosition) {
  260. this.customerPosition = customerPosition;
  261. }
  262. public String getRemarks() {
  263. return remarks;
  264. }
  265. public void setRemarks(String remarks) {
  266. this.remarks = remarks;
  267. }
  268. public String getCompanyName() {
  269. return companyName;
  270. }
  271. public void setCompanyName(String companyName) {
  272. this.companyName = companyName;
  273. }
  274. public String getLocationProvince() {
  275. return locationProvince;
  276. }
  277. public void setLocationProvince(String locationProvince) {
  278. this.locationProvince = locationProvince;
  279. }
  280. public String getCompanyIndustry() {
  281. return companyIndustry;
  282. }
  283. public void setCompanyIndustry(String companyIndustry) {
  284. this.companyIndustry = companyIndustry;
  285. }
  286. public String getLocationCity() {
  287. return locationCity;
  288. }
  289. public void setLocationCity(String locationCity) {
  290. this.locationCity = locationCity;
  291. }
  292. public String getLocationArea() {
  293. return locationArea;
  294. }
  295. public void setLocationArea(String locationArea) {
  296. this.locationArea = locationArea;
  297. }
  298. public String getAdress() {
  299. return adress;
  300. }
  301. public void setAdress(String adress) {
  302. this.adress = adress;
  303. }
  304. public String getAdminName() {
  305. return adminName;
  306. }
  307. public void setAdminName(String adminName) {
  308. this.adminName = adminName;
  309. }
  310. public String getFollowDate() {
  311. return followDate;
  312. }
  313. public void setFollowDate(String followDate) {
  314. this.followDate = followDate;
  315. }
  316. public String getBeforeCustomerStatus() {
  317. return beforeCustomerStatus;
  318. }
  319. public void setBeforeCustomerStatus(String beforeCustomerStatus) {
  320. this.beforeCustomerStatus = beforeCustomerStatus;
  321. }
  322. public String getBeforeCompanyIntention() {
  323. return beforeCompanyIntention;
  324. }
  325. public void setBeforeCompanyIntention(String beforeCompanyIntention) {
  326. this.beforeCompanyIntention = beforeCompanyIntention;
  327. }
  328. public String getBeforeFollowSituation() {
  329. return beforeFollowSituation;
  330. }
  331. public void setBeforeFollowSituation(String beforeFollowSituation) {
  332. this.beforeFollowSituation = beforeFollowSituation;
  333. }
  334. public String getBeforeAdminName() {
  335. return beforeAdminName;
  336. }
  337. public void setBeforeAdminName(String beforeAdminName) {
  338. this.beforeAdminName = beforeAdminName;
  339. }
  340. @Override
  341. public String toString() {
  342. return "CustomerOut [customerType=" + customerType + ", _customerType=" + _customerType + ", id=" + id
  343. + ", customerName=" + customerName + ", cid=" + cid + ", shareType=" + shareType + ", _shareType="
  344. + _shareType + ", companyIntention=" + companyIntention + ", _companyIntention=" + _companyIntention
  345. + ", createTime=" + createTime + ", followSituation=" + followSituation + ", _followSituation="
  346. + _followSituation + ", customerStatus=" + customerStatus + ", _customerStatus=" + _customerStatus
  347. + ", contactName=" + contactName + ", sex=" + sex + ", mobile=" + mobile + ", telNum=" + telNum
  348. + ", email=" + email + ", qq=" + qq + ", wechat=" + wechat + ", depatrment=" + depatrment
  349. + ", customerPosition=" + customerPosition + ", remarks=" + remarks + ", companyName=" + companyName
  350. + ", locationProvince=" + locationProvince + ", companyIndustry=" + companyIndustry + ", locationCity="
  351. + locationCity + ", locationArea=" + locationArea + ", adress=" + adress + ", adminName=" + adminName
  352. + ", followDate=" + followDate + "]";
  353. }
  354. }