Customer.java 4.6 KB

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