From f76c9c5beb39916771402de95f05be18f39a9db6 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 17 Dec 2020 14:34:33 +0800 Subject: [PATCH] finish vip_detail vipInfo fn --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysVipInfo.java | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysVipInfo.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysVipInfo.java index 92105d9..d00c8b5 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysVipInfo.java +++ b/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; } -- Gitblit v1.9.1