This commit is contained in:
dute7liang
2023-12-31 00:00:30 +08:00
parent 6c856eebfb
commit d89b912d64
261 changed files with 911 additions and 929 deletions

View File

@@ -0,0 +1,47 @@
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_member_skill
*
* @author 77
* @date 2023-12-30
*/
@Data
@TableName("cai_member_skill")
public class MemberSkill implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Integer id;
/**
* 类型 0 普通 1 超级
*/
private Integer memberType;
/**
* 名称
*/
private String name;
/**
* 描述
*/
private String desc;
/**
*
*/
private String icon;
/**
* 状态 0 可用 1 不可用
*/
private Integer status;
}