From fc46f2a7c6680df278f4c68c5e91a0ce544a2de4 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 18 Jan 2021 17:00:41 +0800
Subject: [PATCH] modify

---
 zq-erp/src/main/java/com/matrix/system/app/dto/VipInfoListDto.java |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/app/dto/VipInfoListDto.java b/zq-erp/src/main/java/com/matrix/system/app/dto/VipInfoListDto.java
index 6ac5309..03feb35 100644
--- a/zq-erp/src/main/java/com/matrix/system/app/dto/VipInfoListDto.java
+++ b/zq-erp/src/main/java/com/matrix/system/app/dto/VipInfoListDto.java
@@ -19,8 +19,28 @@
     @ApiModelProperty(value = "排序字段 monthArrived(本月到店次数) yearArrived(本年) used(消费) consume(消耗) vipLevel(会员等级) arriveTime(上次到店)", example = "zjm")
     private String sort = "zjm";
 
+    @ApiModelProperty(value = "生日 1-三天内生日 2-本月生日 3-下月生日")
+    private String birthType;
+
+    @ApiModelProperty(value = "会员类型ID")
+    private Long vipType;
+
+    @ApiModelProperty(value = "其他 2-新客户 1-老客户")
+    private String other;
+
     @ApiModelProperty(hidden = true)
     private Long shopId;
+
+    @ApiModelProperty(hidden = true)
+    private Long companyId;
+
+    public Long getCompanyId() {
+        return companyId;
+    }
+
+    public void setCompanyId(Long companyId) {
+        this.companyId = companyId;
+    }
 
     public String getQueryKey() {
         return queryKey;
@@ -53,4 +73,28 @@
     public void setShopId(Long shopId) {
         this.shopId = shopId;
     }
+
+    public String getBirthType() {
+        return birthType;
+    }
+
+    public void setBirthType(String birthType) {
+        this.birthType = birthType;
+    }
+
+    public Long getVipType() {
+        return vipType;
+    }
+
+    public void setVipType(Long vipType) {
+        this.vipType = vipType;
+    }
+
+    public String getOther() {
+        return other;
+    }
+
+    public void setOther(String other) {
+        this.other = other;
+    }
 }

--
Gitblit v1.9.1