Helius
2020-12-17 f76c9c5beb39916771402de95f05be18f39a9db6
zq-erp/src/main/java/com/matrix/system/hive/bean/SysVipInfo.java
@@ -1,5 +1,6 @@
package com.matrix.system.hive.bean;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.tools.DateUtil;
import com.matrix.system.hive.plugin.util.ExcelAnnotation;
import org.springframework.format.annotation.DateTimeFormat;
@@ -91,8 +92,11 @@
   /**
    * 生日
    */
   @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GTM-8")
   @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD)
   private Date birthday1;
   private String age;
 
   /**
    * 地址
@@ -139,6 +143,7 @@
   /**
    * 注册时间
    */
   @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GTM-8")
   private Date createTime;
   /**
    * 备注
@@ -203,6 +208,15 @@
   
   private Date createDistributionTime;
   private SysOrder sysOrder;
   public SysOrder getSysOrder() {
      return sysOrder;
   }
   public void setSysOrder(SysOrder sysOrder) {
      this.sysOrder = sysOrder;
   }
   public Integer getIsDeal() {
      return isDeal;
@@ -349,6 +363,27 @@
    */
   List<VipAnswer> vipAnswers;
   /**
    * 会员标签
    */
   List<SysVipLabel> labels;
   public List<SysVipLabel> getLabels() {
      return labels;
   }
   public void setLabels(List<SysVipLabel> labels) {
      this.labels = labels;
   }
   public String getAge() {
      return age;
   }
   public void setAge(String age) {
      this.age = age;
   }
   public Long getCompanyId() {
      return companyId;
   }