123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- package com.caimei.modules.user.entity;
- import com.alibaba.excel.annotation.ExcelIgnore;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.thinkgem.jeesite.common.utils.excel.annotation.ExcelField;
- /**
- * @author zzj
- */
- public class easyExcel {
- @ExcelIgnore
- private String firstClubType; // 机构一级分类
- @ExcelIgnore
- private String classify; // 机构二级分类
- @ExcelIgnore
- private String address; //详细地址
- @ExcelIgnore
- private String businessLicenseImage; //营业执照
- @ExcelIgnore
- private String userIdentity; //用户身份
- @ExcelIgnore
- private String linkManIdentity; //用户身份
- @ExcelIgnore
- private String sname; //机构简称
- @ExcelIgnore
- private String contractEmail; //联系邮箱
- @ExcelIgnore
- private String contractPhone; //联系电话
- @ExcelIgnore
- private String fax; //传真
- @ExcelIgnore
- private String headpic; //门头照
- @ExcelIgnore
- private String socialCreditCode; //统一社会信用代码 --- 营业执照编号
- @ExcelIgnore
- private String info; //公司简介
- @ExcelIgnore
- private Integer number; //百分比数值
- @ExcelIgnore
- private Integer userID; //user
- @ExcelProperty(value = "机构Id",index = 0)
- private String clubId; //机构ID
- @ExcelProperty(value = "机构名称",index = 1)
- private String name; //机构名称
- @ExcelProperty(value = "联系人",index = 2)
- private String linkMan; //联系人
- @ExcelProperty(value = "联系人身份",index = 3)
- private String linkManStatus; //联系人身份:1老板,2采购,3运营,4其他
- @ExcelProperty(value = "手机号",index = 4)
- private String contractMobile; //手机号
- @ExcelProperty(value = "协销人员",index = 5)
- private String spName; //协销人员
- @ExcelProperty(value = "状态",index = 6)
- private String clubStatus; //状态
- @ExcelProperty(value = "机构类型",index = 7)
- private String clubType; //机构类型
- @ExcelProperty(value = "机构级别",index = 8)
- private String clubRank; //机构级别
- @ExcelProperty(value = "资料完整度",index = 9)
- private String clubDataIntegrity; //资料完整度
- @ExcelProperty(value = "注册时间",index = 10)
- private String addTime; //注册时间
- @ExcelProperty(value = "近一个月订单数",index = 11)
- private String orderCountMonth; //近一个月订单数
- @ExcelProperty(value = "近一年订单数",index = 12)
- private String orderCountYear; //近一年订单数
- @ExcelProperty(value = "近一年购买额",index = 13)
- private String payTotalMonth; //近一年购买额
- @ExcelProperty(value = "总购买额",index = 14)
- private String payTotal; //总购买额
- @ExcelProperty(value = "最常搜索词",index = 15)
- private String pageLabel; //最常搜索词
- @ExcelProperty(value = "最近下单时间",index = 16)
- private String lastOrderTime; //最近下单时间
- public String getFirstClubType() {
- return firstClubType;
- }
- public void setFirstClubType(String firstClubType) {
- this.firstClubType = firstClubType;
- }
- public String getClassify() {
- return classify;
- }
- public void setClassify(String classify) {
- this.classify = classify;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getBusinessLicenseImage() {
- return businessLicenseImage;
- }
- public void setBusinessLicenseImage(String businessLicenseImage) {
- this.businessLicenseImage = businessLicenseImage;
- }
- public String getUserIdentity() {
- return userIdentity;
- }
- public void setUserIdentity(String userIdentity) {
- this.userIdentity = userIdentity;
- }
- public String getLinkManIdentity() {
- return linkManIdentity;
- }
- public void setLinkManIdentity(String linkManIdentity) {
- this.linkManIdentity = linkManIdentity;
- }
- public String getSname() {
- return sname;
- }
- public void setSname(String sname) {
- this.sname = sname;
- }
- public String getContractEmail() {
- return contractEmail;
- }
- public void setContractEmail(String contractEmail) {
- this.contractEmail = contractEmail;
- }
- public String getContractPhone() {
- return contractPhone;
- }
- public void setContractPhone(String contractPhone) {
- this.contractPhone = contractPhone;
- }
- public String getFax() {
- return fax;
- }
- public void setFax(String fax) {
- this.fax = fax;
- }
- public String getHeadpic() {
- return headpic;
- }
- public void setHeadpic(String headpic) {
- this.headpic = headpic;
- }
- public String getSocialCreditCode() {
- return socialCreditCode;
- }
- public void setSocialCreditCode(String socialCreditCode) {
- this.socialCreditCode = socialCreditCode;
- }
- public String getInfo() {
- return info;
- }
- public void setInfo(String info) {
- this.info = info;
- }
- public Integer getNumber() {
- return number;
- }
- public void setNumber(Integer number) {
- this.number = number;
- }
- public Integer getUserID() {
- return userID;
- }
- public void setUserID(Integer userID) {
- this.userID = userID;
- }
- public String getClubId() {
- return clubId;
- }
- public void setClubId(String clubId) {
- this.clubId = clubId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getLinkMan() {
- return linkMan;
- }
- public void setLinkMan(String linkMan) {
- this.linkMan = linkMan;
- }
- public String getLinkManStatus() {
- return linkManStatus;
- }
- public void setLinkManStatus(String linkManStatus) {
- this.linkManStatus = linkManStatus;
- }
- public String getContractMobile() {
- return contractMobile;
- }
- public void setContractMobile(String contractMobile) {
- this.contractMobile = contractMobile;
- }
- public String getSpName() {
- return spName;
- }
- public void setSpName(String spName) {
- this.spName = spName;
- }
- public String getClubStatus() {
- return clubStatus;
- }
- public void setClubStatus(String clubStatus) {
- this.clubStatus = clubStatus;
- }
- public String getClubType() {
- return clubType;
- }
- public void setClubType(String clubType) {
- this.clubType = clubType;
- }
- public String getClubRank() {
- return clubRank;
- }
- public void setClubRank(String clubRank) {
- this.clubRank = clubRank;
- }
- public String getClubDataIntegrity() {
- return clubDataIntegrity;
- }
- public void setClubDataIntegrity(String clubDataIntegrity) {
- this.clubDataIntegrity = clubDataIntegrity;
- }
- public String getAddTime() {
- return addTime;
- }
- public void setAddTime(String addTime) {
- this.addTime = addTime;
- }
- public String getOrderCountMonth() {
- return orderCountMonth;
- }
- public void setOrderCountMonth(String orderCountMonth) {
- this.orderCountMonth = orderCountMonth;
- }
- public String getOrderCountYear() {
- return orderCountYear;
- }
- public void setOrderCountYear(String orderCountYear) {
- this.orderCountYear = orderCountYear;
- }
- public String getPayTotalMonth() {
- return payTotalMonth;
- }
- public void setPayTotalMonth(String payTotalMonth) {
- this.payTotalMonth = payTotalMonth;
- }
- public String getPayTotal() {
- return payTotal;
- }
- public void setPayTotal(String payTotal) {
- this.payTotal = payTotal;
- }
- public String getPageLabel() {
- return pageLabel;
- }
- public void setPageLabel(String pageLabel) {
- this.pageLabel = pageLabel;
- }
- public String getLastOrderTime() {
- return lastOrderTime;
- }
- public void setLastOrderTime(String lastOrderTime) {
- this.lastOrderTime = lastOrderTime;
- }
- }
|