123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- package com.dgtis.data.domain;
- import com.dgtis.common.core.annotation.Excel;
- /**
- * @author koucx
- * @version 1.0
- * @descption: TODO
- * @company 神州数码通用软件(洛阳)有限公司
- * @copyright (c) 2019 LuoYang DGT Co'Ltd Inc. All rights reserved.
- * @date 2021-03-03
- * @since JDK1.8
- */
- public class Customer {
- /** 核心客户号 */
- @Excel(name = "核心客户号")
- private String scustId;
- /** 客户号 */
- @Excel(name = "客户号")
- private String custId;
- /** 姓名 */
- @Excel(name = "姓名")
- private String name;
- /** 证件类型 */
- @Excel(name = "证件类型")
- private String idType;
- /** 证件号码 */
- @Excel(name = "证件号码")
- private String idCard;
- /** 性别 */
- @Excel(name = "性别")
- private String sex;
- /** 出生日期 */
- @Excel(name = "出生日期")
- private String birthDay;
- /** 年龄 */
- @Excel(name = "年龄")
- private int age;
- /** 客户等级 */
- @Excel(name = "客户等级")
- private String custClass;
- /** 客户类型 */
- @Excel(name = "客户类型")
- private String custType;
- /** 省份 */
- @Excel(name = "省份")
- private String province;
- /** 学历 */
- @Excel(name = "学历")
- private String education;
- /** 是否有效客户 */
- @Excel(name = "是否有效客户")
- private String vaild;
- /** 业绩归属 */
- @Excel(name = "业绩归属")
- private String policyBelong;
- /** 年收入 */
- @Excel(name = "年收入")
- private String pIncome;
- /** 保单件数 */
- @Excel(name = "保单件数")
- private String num;
- /** 邮编 */
- @Excel(name = "邮编")
- private String zipCode;
- /** 手机号 */
- @Excel(name = "手机号")
- private String mobile;
- /** 邮箱 */
- @Excel(name = "邮箱")
- private String email;
- /** 起保日期 */
- @Excel(name = "起保日期")
- private String pinDate;
- /** 业务员名称 */
- @Excel(name = "业务员名称")
- private String agentName;
- /** 业绩归属 */
- @Excel(name = "业绩归属")
- private String salecomName;
- public String getScustId() {
- return scustId;
- }
- public void setScustId(String scustId) {
- this.scustId = scustId;
- }
- public String getCustId() {
- return custId;
- }
- public void setCustId(String custId) {
- this.custId = custId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getIdType() {
- return idType;
- }
- public void setIdType(String idType) {
- this.idType = idType;
- }
- public String getIdCard() {
- return idCard;
- }
- public void setIdCard(String idCard) {
- this.idCard = idCard;
- }
- public String getSex() {
- return sex;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- public String getBirthDay() {
- return birthDay;
- }
- public void setBirthDay(String birthDay) {
- this.birthDay = birthDay;
- }
- public int getAge() {
- return age;
- }
- public void setAge(int age) {
- this.age = age;
- }
- public String getCustClass() {
- return custClass;
- }
- public void setCustClass(String custClass) {
- this.custClass = custClass;
- }
- public String getCustType() {
- return custType;
- }
- public void setCustType(String custType) {
- this.custType = custType;
- }
- public String getProvince() {
- return province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getEducation() {
- return education;
- }
- public void setEducation(String education) {
- this.education = education;
- }
- public String getVaild() {
- return vaild;
- }
- public void setVaild(String vaild) {
- this.vaild = vaild;
- }
- public String getPolicyBelong() {
- return policyBelong;
- }
- public void setPolicyBelong(String policyBelong) {
- this.policyBelong = policyBelong;
- }
- public String getpIncome() {
- return pIncome;
- }
- public void setpIncome(String pIncome) {
- this.pIncome = pIncome;
- }
- public String getNum() {
- return num;
- }
- public void setNum(String num) {
- this.num = num;
- }
- public String getZipCode() {
- return zipCode;
- }
- public void setZipCode(String zipCode) {
- this.zipCode = zipCode;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public String getEmail() {
- return email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public String getPinDate() {
- return pinDate;
- }
- public void setPinDate(String pinDate) {
- this.pinDate = pinDate;
- }
- public String getAgentName() {
- return agentName;
- }
- public void setAgentName(String agentName) {
- this.agentName = agentName;
- }
- public String getSalecomName() {
- return salecomName;
- }
- public void setSalecomName(String salecomName) {
- this.salecomName = salecomName;
- }
- }
|