hjl
2024-05-23 5cc3053e346a848b5b329b53fa14e60f927847aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.study.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "会员中心VO")
public class VipInfoVO {
    @ApiModelProperty(value = "id")
    private Integer id;
    @ApiModelProperty(value = "会员说明")
    private String info;
    @ApiModelProperty(value = "当前用户是否是会员0否1是")
    private Integer isVip;
    @ApiModelProperty(value = "有效期单位月")
    private Integer time;
    @ApiModelProperty(value = "金额")
    private BigDecimal amount;
}