init
This commit is contained in:
@@ -2,6 +2,7 @@ package com.ruoyi.xq.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -24,18 +25,22 @@ public class VipPrice implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
@Schema(description = "VIP价格ID")
|
||||
private Long id;
|
||||
/**
|
||||
* 1-普通会员 2-黄金会员 3-钻石会员
|
||||
*/
|
||||
@Schema(description = "1-普通会员 2-黄金会员 3-钻石会员")
|
||||
private Integer vipType;
|
||||
/**
|
||||
* 1-月卡 2-季卡 3-年卡
|
||||
*/
|
||||
@Schema(description = "1-月卡 2-季卡 3-年卡")
|
||||
private Integer vipTime;
|
||||
/**
|
||||
* 会员价格
|
||||
*/
|
||||
@Schema(description = "会员价格")
|
||||
private BigDecimal vipPrice;
|
||||
/**
|
||||
* 1-启用 0-禁用
|
||||
|
||||
Reference in New Issue
Block a user