Customer.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. * 归属人id
  10. */
  11. private String aid;
  12. /**
  13. * 客户类型(1-个人用户,2-公司用户)
  14. */
  15. private String customerTyp;
  16. /**
  17. * 分享类型(1-个人用户,2-公共用户)
  18. */
  19. private Integer shareTyp;
  20. /**
  21. * 代理人id
  22. */
  23. private String agentId;
  24. /**
  25. * 公司意向
  26. */
  27. private String companyIntention;
  28. /**
  29. * 创建时间
  30. */
  31. private Date createTime;
  32. /**
  33. * 跟进进度(0-已发项目介绍资料,1-已约面谈,2-已发合同计划书,3-已报价,4-已发合同,5-已签合同,6-面谈中,7-已面签)
  34. */
  35. private String followSituation;
  36. /**
  37. * 客户状态(0-新客户,1-意向客户,2-重点客户,3-面谈客户,4-签单客户,5-被拒绝客户)
  38. */
  39. private String customerStatue;
  40. /**
  41. * 上级ID
  42. */
  43. private String paid;
  44. /**
  45. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.id
  46. * @return the value of customer.id
  47. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  48. */
  49. public String getId() {
  50. return id;
  51. }
  52. /**
  53. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.id
  54. * @param id the value for customer.id
  55. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  56. */
  57. public void setId(String id) {
  58. this.id = id;
  59. }
  60. /**
  61. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.aid
  62. * @return the value of customer.aid
  63. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  64. */
  65. public String getAid() {
  66. return aid;
  67. }
  68. /**
  69. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.aid
  70. * @param aid the value for customer.aid
  71. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  72. */
  73. public void setAid(String aid) {
  74. this.aid = aid;
  75. }
  76. /**
  77. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.customer_typ
  78. * @return the value of customer.customer_typ
  79. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  80. */
  81. public String getCustomerTyp() {
  82. return customerTyp;
  83. }
  84. /**
  85. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.customer_typ
  86. * @param customerTyp the value for customer.customer_typ
  87. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  88. */
  89. public void setCustomerTyp(String customerTyp) {
  90. this.customerTyp = customerTyp;
  91. }
  92. /**
  93. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.share_typ
  94. * @return the value of customer.share_typ
  95. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  96. */
  97. public Integer getShareTyp() {
  98. return shareTyp;
  99. }
  100. /**
  101. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.share_typ
  102. * @param shareTyp the value for customer.share_typ
  103. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  104. */
  105. public void setShareTyp(Integer shareTyp) {
  106. this.shareTyp = shareTyp;
  107. }
  108. /**
  109. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.agent_id
  110. * @return the value of customer.agent_id
  111. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  112. */
  113. public String getAgentId() {
  114. return agentId;
  115. }
  116. /**
  117. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.agent_id
  118. * @param agentId the value for customer.agent_id
  119. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  120. */
  121. public void setAgentId(String agentId) {
  122. this.agentId = agentId;
  123. }
  124. /**
  125. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.company_intention
  126. * @return the value of customer.company_intention
  127. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  128. */
  129. public String getCompanyIntention() {
  130. return companyIntention;
  131. }
  132. /**
  133. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.company_intention
  134. * @param companyIntention the value for customer.company_intention
  135. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  136. */
  137. public void setCompanyIntention(String companyIntention) {
  138. this.companyIntention = companyIntention;
  139. }
  140. /**
  141. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.create_time
  142. * @return the value of customer.create_time
  143. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  144. */
  145. public Date getCreateTime() {
  146. return createTime;
  147. }
  148. /**
  149. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.create_time
  150. * @param createTime the value for customer.create_time
  151. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  152. */
  153. public void setCreateTime(Date createTime) {
  154. this.createTime = createTime;
  155. }
  156. /**
  157. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.follow_situation
  158. * @return the value of customer.follow_situation
  159. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  160. */
  161. public String getFollowSituation() {
  162. return followSituation;
  163. }
  164. /**
  165. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.follow_situation
  166. * @param followSituation the value for customer.follow_situation
  167. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  168. */
  169. public void setFollowSituation(String followSituation) {
  170. this.followSituation = followSituation;
  171. }
  172. /**
  173. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.customer_statue
  174. * @return the value of customer.customer_statue
  175. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  176. */
  177. public String getCustomerStatue() {
  178. return customerStatue;
  179. }
  180. /**
  181. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.customer_statue
  182. * @param customerStatue the value for customer.customer_statue
  183. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  184. */
  185. public void setCustomerStatue(String customerStatue) {
  186. this.customerStatue = customerStatue;
  187. }
  188. /**
  189. * This method was generated by MyBatis Generator. This method returns the value of the database column customer.paid
  190. * @return the value of customer.paid
  191. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  192. */
  193. public String getPaid() {
  194. return paid;
  195. }
  196. /**
  197. * This method was generated by MyBatis Generator. This method sets the value of the database column customer.paid
  198. * @param paid the value for customer.paid
  199. * @mbg.generated Wed Oct 11 15:40:31 CST 2017
  200. */
  201. public void setPaid(String paid) {
  202. this.paid = paid;
  203. }
  204. }