| 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; | 
|     } | 
| } |