|
@@ -0,0 +1,325 @@
|
|
|
+package com.caimei.modules.user.entity;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Description
|
|
|
+ *
|
|
|
+ * @author : hzg
|
|
|
+ * @date : 2024/1/17
|
|
|
+ */
|
|
|
+public class ActiveClubExcel {
|
|
|
+ @ExcelIgnore
|
|
|
+ private Integer userID; // 用户Id
|
|
|
+ @ExcelProperty(value = "机构Id", index = 0)
|
|
|
+ private Integer clubID; // 机构Id
|
|
|
+ // 省
|
|
|
+ @ExcelIgnore
|
|
|
+ private String provinceID;
|
|
|
+ // 市
|
|
|
+ @ExcelIgnore
|
|
|
+ private String cityID;
|
|
|
+ @ExcelIgnore
|
|
|
+ private String province;
|
|
|
+ @ExcelIgnore
|
|
|
+ private String city;
|
|
|
+ @ExcelIgnore
|
|
|
+ private String town;
|
|
|
+ @ExcelProperty(value = "机构名称", index = 1)
|
|
|
+ private String name; // 机构名称
|
|
|
+ @ExcelProperty(value = "联系人", index = 2)
|
|
|
+ private String linkMan; //联系人
|
|
|
+ @ExcelProperty(value = "联系手机", index = 4)
|
|
|
+ private String contractMobile; //联系手机
|
|
|
+ @ExcelIgnore
|
|
|
+ private String linkManIdentity; //联系人身份:1老板,2采购,3运营,4其他
|
|
|
+ @ExcelIgnore
|
|
|
+ private Integer spID; // 协销Id
|
|
|
+ @ExcelProperty(value = "协销人员", index = 5)
|
|
|
+ private String spName; //协销人员
|
|
|
+ @ExcelProperty(value = "地址", index = 6)
|
|
|
+ private String address; //详细地址
|
|
|
+ @ExcelIgnore
|
|
|
+ private String userIdentity; //用户身份
|
|
|
+ @ExcelIgnore
|
|
|
+ private String sname; //机构简称
|
|
|
+ @ExcelProperty(value = "联系人身份", index = 3)
|
|
|
+ private String linkManStatus; //联系人身份
|
|
|
+ @ExcelProperty(value = "状态", index = 7)
|
|
|
+ private String clubStatus; // 机构状态
|
|
|
+ @ExcelProperty(value = "机构类型", index = 8)
|
|
|
+ private String clubType; // 机构类型
|
|
|
+ @ExcelProperty(value = "机构级别", index = 9)
|
|
|
+ private String clubRank; // 机构级别
|
|
|
+ @ExcelIgnore
|
|
|
+ private String firstClubType; // 机构一级分类
|
|
|
+ @ExcelIgnore
|
|
|
+ private String classify; // 机构二级分类
|
|
|
+ @ExcelIgnore
|
|
|
+ private String addTime; // 注册时间
|
|
|
+ @ExcelIgnore
|
|
|
+ private String svipUserFlag; // vip类别
|
|
|
+ @ExcelIgnore
|
|
|
+ private String activeStatus; // 活跃状态 0:活跃、1:不活跃
|
|
|
+ @ExcelIgnore
|
|
|
+ private String activeState; // 活跃状态
|
|
|
+ @ExcelIgnore
|
|
|
+ private String customerValues; // 客户价值
|
|
|
+ @ExcelProperty(value = "注册时间", index = 10)
|
|
|
+ private String registerTime; // 注册时间
|
|
|
+ @ExcelProperty(value = "最近访问时间", index = 11)
|
|
|
+ private String behaviorTime; // 最近访问时间
|
|
|
+ @ExcelProperty(value = "最近下单时间", index = 13)
|
|
|
+ private String lastOrderTime; // 最近下单时间
|
|
|
+ @ExcelProperty(value = "最近咨询时间", index = 12)
|
|
|
+ private String recentlyTime; //最近咨询时间
|
|
|
+
|
|
|
+ public Integer getUserID() {
|
|
|
+ return userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserID(Integer userID) {
|
|
|
+ this.userID = userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getClubID() {
|
|
|
+ return clubID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClubID(Integer clubID) {
|
|
|
+ this.clubID = clubID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvinceID() {
|
|
|
+ return provinceID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvinceID(String provinceID) {
|
|
|
+ this.provinceID = provinceID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCityID() {
|
|
|
+ return cityID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCityID(String cityID) {
|
|
|
+ this.cityID = cityID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvince() {
|
|
|
+ return province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvince(String province) {
|
|
|
+ this.province = province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCity() {
|
|
|
+ return city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCity(String city) {
|
|
|
+ this.city = city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTown() {
|
|
|
+ return town;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTown(String town) {
|
|
|
+ this.town = town;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 getContractMobile() {
|
|
|
+ return contractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractMobile(String contractMobile) {
|
|
|
+ this.contractMobile = contractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLinkManIdentity() {
|
|
|
+ return linkManIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLinkManIdentity(String linkManIdentity) {
|
|
|
+ this.linkManIdentity = linkManIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSpID() {
|
|
|
+ return spID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpID(Integer spID) {
|
|
|
+ this.spID = spID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSpName() {
|
|
|
+ return spName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpName(String spName) {
|
|
|
+ this.spName = spName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAddress() {
|
|
|
+ return address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAddress(String address) {
|
|
|
+ this.address = address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserIdentity() {
|
|
|
+ return userIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserIdentity(String userIdentity) {
|
|
|
+ this.userIdentity = userIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSname() {
|
|
|
+ return sname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSname(String sname) {
|
|
|
+ this.sname = sname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLinkManStatus() {
|
|
|
+ return linkManStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLinkManStatus(String linkManStatus) {
|
|
|
+ this.linkManStatus = linkManStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 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 getAddTime() {
|
|
|
+ return addTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAddTime(String addTime) {
|
|
|
+ this.addTime = addTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSvipUserFlag() {
|
|
|
+ return svipUserFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSvipUserFlag(String svipUserFlag) {
|
|
|
+ this.svipUserFlag = svipUserFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActiveStatus() {
|
|
|
+ return activeStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveStatus(String activeStatus) {
|
|
|
+ this.activeStatus = activeStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActiveState() {
|
|
|
+ return activeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveState(String activeState) {
|
|
|
+ this.activeState = activeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerValues() {
|
|
|
+ return customerValues;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerValues(String customerValues) {
|
|
|
+ this.customerValues = customerValues;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRegisterTime() {
|
|
|
+ return registerTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRegisterTime(String registerTime) {
|
|
|
+ this.registerTime = registerTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBehaviorTime() {
|
|
|
+ return behaviorTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBehaviorTime(String behaviorTime) {
|
|
|
+ this.behaviorTime = behaviorTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLastOrderTime() {
|
|
|
+ return lastOrderTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLastOrderTime(String lastOrderTime) {
|
|
|
+ this.lastOrderTime = lastOrderTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRecentlyTime() {
|
|
|
+ return recentlyTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecentlyTime(String recentlyTime) {
|
|
|
+ this.recentlyTime = recentlyTime;
|
|
|
+ }
|
|
|
+}
|