Customer.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  5. public class Customer {
  6. /**
  7. * 获取id
  8. */
  9. private String id;
  10. /**
  11. * 跟单人
  12. */
  13. private String adminName;
  14. /**
  15. * 获取时间
  16. */
  17. private Date createTime;
  18. /**
  19. * 拥有者
  20. */
  21. private String aid;
  22. /**
  23. * 公司名称
  24. */
  25. private String companyName;
  26. /**
  27. * 客户类型
  28. */
  29. private Integer customerTyp;
  30. /**
  31. * 行业
  32. */
  33. private String companyIndustry;
  34. /**
  35. * 公司意向
  36. */
  37. private String companyIntention;
  38. /**
  39. * 公司地址
  40. */
  41. private String adress;
  42. /**
  43. * 客户名称
  44. */
  45. private String customerName;
  46. /**
  47. * 座机
  48. */
  49. private String mobile;
  50. /**
  51. * 手机电话
  52. */
  53. private String telNum;
  54. /**
  55. * 邮箱
  56. */
  57. private String email;
  58. /**
  59. * 部门
  60. */
  61. private String department;
  62. /**
  63. * qq
  64. */
  65. private String qq;
  66. /**
  67. * 微信号
  68. */
  69. private String wechat;
  70. /**
  71. * 职位
  72. */
  73. private String customerPosition;
  74. /**
  75. * 备注
  76. */
  77. private String remark;
  78. /**
  79. * 省份
  80. */
  81. private String province;
  82. /**
  83. * 跟进情况
  84. */
  85. private String fllowSituation;
  86. /**
  87. * 性别
  88. */
  89. private Integer sex;
  90. /**
  91. * 客户状态
  92. */
  93. private String customerStatue;
  94. public String getId() {
  95. return id;
  96. }
  97. public void setId(String id) {
  98. this.id = id;
  99. }
  100. public String getAdminName() {
  101. return adminName;
  102. }
  103. public void setAdminName(String adminName) {
  104. this.adminName = adminName;
  105. }
  106. public Date getCreateTime() {
  107. return createTime;
  108. }
  109. public void setCreateTime(Date createTime) {
  110. this.createTime = createTime;
  111. }
  112. public String getAid() {
  113. return aid;
  114. }
  115. public void setAid(String aid) {
  116. this.aid = aid;
  117. }
  118. public String getCompanyName() {
  119. return companyName;
  120. }
  121. public void setCompanyName(String companyName) {
  122. this.companyName = companyName;
  123. }
  124. public String getCompanyIndustry() {
  125. return companyIndustry;
  126. }
  127. public void setCompanyIndustry(String companyIndustry) {
  128. this.companyIndustry = companyIndustry;
  129. }
  130. public String getCompanyIntention() {
  131. return companyIntention;
  132. }
  133. public void setCompanyIntention(String companyIntention) {
  134. this.companyIntention = companyIntention;
  135. }
  136. public String getAdress() {
  137. return adress;
  138. }
  139. public void setAdress(String adress) {
  140. this.adress = adress;
  141. }
  142. public String getCustomerName() {
  143. return customerName;
  144. }
  145. public void setCustomerName(String customerName) {
  146. this.customerName = customerName;
  147. }
  148. public String getMobile() {
  149. return mobile;
  150. }
  151. public void setMobile(String mobile) {
  152. this.mobile = mobile;
  153. }
  154. public String getEmail() {
  155. return email;
  156. }
  157. public void setEmail(String email) {
  158. this.email = email;
  159. }
  160. public String getDepartment() {
  161. return department;
  162. }
  163. public void setDepartment(String department) {
  164. this.department = department;
  165. }
  166. public String getQq() {
  167. return qq;
  168. }
  169. public void setQq(String qq) {
  170. this.qq = qq;
  171. }
  172. public String getWechat() {
  173. return wechat;
  174. }
  175. public void setWechat(String wechat) {
  176. this.wechat = wechat;
  177. }
  178. public String getCustomerPosition() {
  179. return customerPosition;
  180. }
  181. public void setCustomerPosition(String customerPosition) {
  182. this.customerPosition = customerPosition;
  183. }
  184. public String getRemark() {
  185. return remark;
  186. }
  187. public void setRemark(String remark) {
  188. this.remark = remark;
  189. }
  190. public String getProvince() {
  191. return province;
  192. }
  193. public void setProvince(String province) {
  194. this.province = province;
  195. }
  196. public String getFllowSituation() {
  197. return fllowSituation;
  198. }
  199. public void setFllowSituation(String fllowSituation) {
  200. this.fllowSituation = fllowSituation;
  201. }
  202. @JsonFormat(shape = Shape.STRING)
  203. public Integer getSex() {
  204. return sex;
  205. }
  206. public void setSex(Integer sex) {
  207. this.sex = sex;
  208. }
  209. public String getCustomerStatue() {
  210. return customerStatue;
  211. }
  212. public void setCustomerStatue(String customerStatue) {
  213. this.customerStatue = customerStatue;
  214. }
  215. public String getTelNum() {
  216. return telNum;
  217. }
  218. public void setTelNum(String telNum) {
  219. this.telNum = telNum;
  220. }
  221. @JsonFormat(shape = Shape.STRING)
  222. public Integer getCustomerTyp() {
  223. return customerTyp;
  224. }
  225. public void setCustomerTyp(Integer customerTyp) {
  226. this.customerTyp = customerTyp;
  227. }
  228. @Override
  229. public String toString() {
  230. return "Customer [createTime=" + createTime + ", ownerId=" + aid + ", companyName=" + companyName
  231. + ", companyIndustry=" + companyIndustry + ", companyIntention=" + companyIntention + ", adress="
  232. + adress + ", customerName=" + customerName + ", mobile=" + mobile + ", email=" + email
  233. + ", department=" + department + ", qq=" + qq + ", wechat=" + wechat + ", customerPosition="
  234. + customerPosition + ", remark=" + remark + ", province=" + province + ", fllowSituation="
  235. + fllowSituation + ", sex=" + sex + ", customerStatue=" + customerStatue + "]";
  236. }
  237. }