49 lines
882 B
Java
49 lines
882 B
Java
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;
|
|
|
|
/**
|
|
* 会员技能对象 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",type = IdType.AUTO)
|
|
private Integer id;
|
|
/**
|
|
* 类型 0 普通 1 超级
|
|
*/
|
|
private Integer memberType;
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
/**
|
|
* 描述
|
|
*/
|
|
private String desc;
|
|
/**
|
|
*
|
|
*/
|
|
private String icon;
|
|
/**
|
|
* 状态 0 可用 1 不可用
|
|
*/
|
|
private Integer status;
|
|
|
|
}
|