New file |
| | |
| | | package com.dsh.account.vo; |
| | | |
| | | import com.dsh.account.entity.Vip; |
| | | import com.dsh.account.entity.VipPayment; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel("购买会员页面数据返回VO") |
| | | public class VipPaymentVO { |
| | | |
| | | @ApiModelProperty(value = "头像") |
| | | private String headImg; |
| | | @ApiModelProperty(value = "用户名称") |
| | | private String name; |
| | | @ApiModelProperty(value = "当前是否会员 0否1是") |
| | | private Integer isVip; |
| | | @ApiModelProperty(value = "所有上架的会员卡") |
| | | private List<Vip> vipList; |
| | | @ApiModelProperty(value = "会员协议") |
| | | private String agreement; |
| | | |
| | | } |