This commit is contained in:
张良(004796)
2024-01-03 14:50:25 +08:00
parent fdc6dfc477
commit 1641b5f871
6 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
package com.ruoyi.cai.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 会员价格对象 cai_member_price
*
* @author 77
* @date 2024-01-03
*/
@Data
@TableName("cai_member_price")
public class MemberPrice implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id",type = IdType.AUTO)
private Integer id;
/**
* 类型 0 普通 1 超级
*/
private Integer memberType;
/**
* 名称
*/
private String name;
/**
* 价格
*/
private BigDecimal price;
/**
* 图片地址
*/
private String img;
/**
* 描述
*/
private String desc;
/**
* 有效期(天)
*/
private Integer expires;
/**
* 状态 0 可用 1不可用
*/
private Integer status;
/**
* 永久状态 0 不是 1是
*/
private Integer longs;
}