Customer.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. package com.dgtis.data.domain;
  2. import com.dgtis.common.core.annotation.Excel;
  3. /**
  4. * @author koucx
  5. * @version 1.0
  6. * @descption: TODO
  7. * @company 神州数码通用软件(洛阳)有限公司
  8. * @copyright (c) 2019 LuoYang DGT Co'Ltd Inc. All rights reserved.
  9. * @date 2021-03-03
  10. * @since JDK1.8
  11. */
  12. public class Customer {
  13. /** 核心客户号 */
  14. @Excel(name = "核心客户号")
  15. private String scustId;
  16. /** 客户号 */
  17. @Excel(name = "客户号")
  18. private String custId;
  19. /** 姓名 */
  20. @Excel(name = "姓名")
  21. private String name;
  22. /** 证件类型 */
  23. @Excel(name = "证件类型")
  24. private String idType;
  25. /** 证件号码 */
  26. @Excel(name = "证件号码")
  27. private String idCard;
  28. /** 性别 */
  29. @Excel(name = "性别")
  30. private String sex;
  31. /** 出生日期 */
  32. @Excel(name = "出生日期")
  33. private String birthDay;
  34. /** 年龄 */
  35. @Excel(name = "年龄")
  36. private int age;
  37. /** 客户等级 */
  38. @Excel(name = "客户等级")
  39. private String custClass;
  40. /** 客户类型 */
  41. @Excel(name = "客户类型")
  42. private String custType;
  43. /** 省份 */
  44. @Excel(name = "省份")
  45. private String province;
  46. /** 学历 */
  47. @Excel(name = "学历")
  48. private String education;
  49. /** 是否有效客户 */
  50. @Excel(name = "是否有效客户")
  51. private String vaild;
  52. /** 业绩归属 */
  53. @Excel(name = "业绩归属")
  54. private String policyBelong;
  55. /** 年收入 */
  56. @Excel(name = "年收入")
  57. private String pIncome;
  58. /** 保单件数 */
  59. @Excel(name = "保单件数")
  60. private String num;
  61. /** 邮编 */
  62. @Excel(name = "邮编")
  63. private String zipCode;
  64. /** 手机号 */
  65. @Excel(name = "手机号")
  66. private String mobile;
  67. /** 邮箱 */
  68. @Excel(name = "邮箱")
  69. private String email;
  70. /** 起保日期 */
  71. @Excel(name = "起保日期")
  72. private String pinDate;
  73. /** 业务员名称 */
  74. @Excel(name = "业务员名称")
  75. private String agentName;
  76. /** 业绩归属 */
  77. @Excel(name = "业绩归属")
  78. private String salecomName;
  79. public String getScustId() {
  80. return scustId;
  81. }
  82. public void setScustId(String scustId) {
  83. this.scustId = scustId;
  84. }
  85. public String getCustId() {
  86. return custId;
  87. }
  88. public void setCustId(String custId) {
  89. this.custId = custId;
  90. }
  91. public String getName() {
  92. return name;
  93. }
  94. public void setName(String name) {
  95. this.name = name;
  96. }
  97. public String getIdType() {
  98. return idType;
  99. }
  100. public void setIdType(String idType) {
  101. this.idType = idType;
  102. }
  103. public String getIdCard() {
  104. return idCard;
  105. }
  106. public void setIdCard(String idCard) {
  107. this.idCard = idCard;
  108. }
  109. public String getSex() {
  110. return sex;
  111. }
  112. public void setSex(String sex) {
  113. this.sex = sex;
  114. }
  115. public String getBirthDay() {
  116. return birthDay;
  117. }
  118. public void setBirthDay(String birthDay) {
  119. this.birthDay = birthDay;
  120. }
  121. public int getAge() {
  122. return age;
  123. }
  124. public void setAge(int age) {
  125. this.age = age;
  126. }
  127. public String getCustClass() {
  128. return custClass;
  129. }
  130. public void setCustClass(String custClass) {
  131. this.custClass = custClass;
  132. }
  133. public String getCustType() {
  134. return custType;
  135. }
  136. public void setCustType(String custType) {
  137. this.custType = custType;
  138. }
  139. public String getProvince() {
  140. return province;
  141. }
  142. public void setProvince(String province) {
  143. this.province = province;
  144. }
  145. public String getEducation() {
  146. return education;
  147. }
  148. public void setEducation(String education) {
  149. this.education = education;
  150. }
  151. public String getVaild() {
  152. return vaild;
  153. }
  154. public void setVaild(String vaild) {
  155. this.vaild = vaild;
  156. }
  157. public String getPolicyBelong() {
  158. return policyBelong;
  159. }
  160. public void setPolicyBelong(String policyBelong) {
  161. this.policyBelong = policyBelong;
  162. }
  163. public String getpIncome() {
  164. return pIncome;
  165. }
  166. public void setpIncome(String pIncome) {
  167. this.pIncome = pIncome;
  168. }
  169. public String getNum() {
  170. return num;
  171. }
  172. public void setNum(String num) {
  173. this.num = num;
  174. }
  175. public String getZipCode() {
  176. return zipCode;
  177. }
  178. public void setZipCode(String zipCode) {
  179. this.zipCode = zipCode;
  180. }
  181. public String getMobile() {
  182. return mobile;
  183. }
  184. public void setMobile(String mobile) {
  185. this.mobile = mobile;
  186. }
  187. public String getEmail() {
  188. return email;
  189. }
  190. public void setEmail(String email) {
  191. this.email = email;
  192. }
  193. public String getPinDate() {
  194. return pinDate;
  195. }
  196. public void setPinDate(String pinDate) {
  197. this.pinDate = pinDate;
  198. }
  199. public String getAgentName() {
  200. return agentName;
  201. }
  202. public void setAgentName(String agentName) {
  203. this.agentName = agentName;
  204. }
  205. public String getSalecomName() {
  206. return salecomName;
  207. }
  208. public void setSalecomName(String salecomName) {
  209. this.salecomName = salecomName;
  210. }
  211. }