This commit is contained in:
张良(004796)
2024-03-06 18:30:52 +08:00
parent 7e1f31ed2f
commit 60293b4a70
19 changed files with 404 additions and 4 deletions

View File

@@ -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-禁用