From f7ea5773570beb5ad8c6efb5c1cf743294ee079b Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Sun, 24 Jan 2021 14:16:04 +0800 Subject: [PATCH] modify --- zq-erp/src/main/java/com/matrix/system/app/vo/VipInfoListVo.java | 90 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 90 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/vo/VipInfoListVo.java b/zq-erp/src/main/java/com/matrix/system/app/vo/VipInfoListVo.java new file mode 100644 index 0000000..04cfadd --- /dev/null +++ b/zq-erp/src/main/java/com/matrix/system/app/vo/VipInfoListVo.java @@ -0,0 +1,90 @@ +package com.matrix.system.app.vo; + +import com.matrix.system.hive.bean.SysVipLevel; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +/** + * @author wzy + * @date 2020-12-22 + **/ +@ApiModel(value = "VipInfoListVo", description = "会员列表返回类") +public class VipInfoListVo { + + @ApiModelProperty(value = "会员姓名") + private String vipName; + + @ApiModelProperty(value = "会员手机号") + private String phone; + + @ApiModelProperty(value = "到店次数") + private Integer arriveCnt; + + @ApiModelProperty(value = "头像") + private String photo; + + @ApiModelProperty(value = "会员ID") + private Long id; + + @ApiModelProperty(value = "门店简称") + private String shopName; + + @ApiModelProperty(value = "会员等级对象") + private String vipLevel; + + public String getVipName() { + return vipName; + } + + public void setVipName(String vipName) { + this.vipName = vipName; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone; + } + + public Integer getArriveCnt() { + return arriveCnt; + } + + public void setArriveCnt(Integer arriveCnt) { + this.arriveCnt = arriveCnt; + } + + public String getPhoto() { + return photo; + } + + public void setPhoto(String photo) { + this.photo = photo; + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getShopName() { + return shopName; + } + + public void setShopName(String shopName) { + this.shopName = shopName; + } + + public String getVipLevel() { + return vipLevel; + } + + public void setVipLevel(String vipLevel) { + this.vipLevel = vipLevel; + } +} -- Gitblit v1.9.1