package com.ruoyi.cai.domain; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.io.Serializable; /** * 礼物对象 cai_gift * * @author 77 * @date 2023-12-23 */ @Data @TableName("cai_gift") public class Gift implements Serializable { private static final long serialVersionUID=1L; /** * 礼物ID */ @TableId(value = "id") private Integer id; /** * 类型 0 普通礼物 1svga礼物 */ private Integer type; /** * 礼物名称 */ private String name; /** * 礼物价格 */ private Long price; /** * 礼物图片地址 */ private String img; /** * svga地址 */ private String svga; /** * svgamd5串 */ private String md5String; /** * 礼物描述 */ private String desc; /** * 是否隐藏 0 不隐藏,可见 1 隐藏 */ private Integer hide; /** * 排序 */ private Integer sort; /** * 状态 0 可用 1 不可用 */ private Integer status; }