42 lines
756 B
Java
42 lines
756 B
Java
package net.maku.system.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import net.maku.framework.mybatis.entity.BaseEntity;
|
|
|
|
/**
|
|
* 数据字典
|
|
*
|
|
* @author 阿沐 babamu@126.com
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@TableName("sys_dict_data")
|
|
public class SysDictDataEntity extends BaseEntity {
|
|
/**
|
|
* 字典类型ID
|
|
*/
|
|
private Long dictTypeId;
|
|
/**
|
|
* 字典标签
|
|
*/
|
|
private String dictLabel;
|
|
/**
|
|
* 字典值
|
|
*/
|
|
private String dictValue;
|
|
/**
|
|
* 标签样式
|
|
*/
|
|
private String labelClass;
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
/**
|
|
* 排序
|
|
*/
|
|
private Integer sort;
|
|
}
|