Customer.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. public String getScustId() {
  62. return scustId;
  63. }
  64. public void setScustId(String scustId) {
  65. this.scustId = scustId;
  66. }
  67. public String getCustId() {
  68. return custId;
  69. }
  70. public void setCustId(String custId) {
  71. this.custId = custId;
  72. }
  73. public String getName() {
  74. return name;
  75. }
  76. public void setName(String name) {
  77. this.name = name;
  78. }
  79. public String getIdType() {
  80. return idType;
  81. }
  82. public void setIdType(String idType) {
  83. this.idType = idType;
  84. }
  85. public String getIdCard() {
  86. return idCard;
  87. }
  88. public void setIdCard(String idCard) {
  89. this.idCard = idCard;
  90. }
  91. public String getSex() {
  92. return sex;
  93. }
  94. public void setSex(String sex) {
  95. this.sex = sex;
  96. }
  97. public String getBirthDay() {
  98. return birthDay;
  99. }
  100. public void setBirthDay(String birthDay) {
  101. this.birthDay = birthDay;
  102. }
  103. public int getAge() {
  104. return age;
  105. }
  106. public void setAge(int age) {
  107. this.age = age;
  108. }
  109. public String getCustClass() {
  110. return custClass;
  111. }
  112. public void setCustClass(String custClass) {
  113. this.custClass = custClass;
  114. }
  115. public String getCustType() {
  116. return custType;
  117. }
  118. public void setCustType(String custType) {
  119. this.custType = custType;
  120. }
  121. public String getProvince() {
  122. return province;
  123. }
  124. public void setProvince(String province) {
  125. this.province = province;
  126. }
  127. public String getEducation() {
  128. return education;
  129. }
  130. public void setEducation(String education) {
  131. this.education = education;
  132. }
  133. public String getVaild() {
  134. return vaild;
  135. }
  136. public void setVaild(String vaild) {
  137. this.vaild = vaild;
  138. }
  139. public String getPolicyBelong() {
  140. return policyBelong;
  141. }
  142. public void setPolicyBelong(String policyBelong) {
  143. this.policyBelong = policyBelong;
  144. }
  145. public String getpIncome() {
  146. return pIncome;
  147. }
  148. public void setpIncome(String pIncome) {
  149. this.pIncome = pIncome;
  150. }
  151. public String getNum() {
  152. return num;
  153. }
  154. public void setNum(String num) {
  155. this.num = num;
  156. }
  157. }