65 lines
962 B
Java
65 lines
962 B
Java
package com.peanut.modules.book.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 字典数据
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-04 17:25:02
|
|
*/
|
|
@Data
|
|
@TableName("sys_dict_data")
|
|
public class SysDictDataEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
@TableId
|
|
private Long id;
|
|
/**
|
|
* 字典值类型
|
|
*/
|
|
private String dictType;
|
|
/**
|
|
* 字典标签
|
|
*/
|
|
private String dictLabel;
|
|
/**
|
|
* 字典值
|
|
*/
|
|
private String dictValue;
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
/**
|
|
* 排序
|
|
*/
|
|
private Integer sort;
|
|
/**
|
|
* 创建者
|
|
*/
|
|
private Long creator;
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createDate;
|
|
/**
|
|
* 更新者
|
|
*/
|
|
private Long updater;
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updateDate;
|
|
|
|
}
|