package com.terra.lfdcexp.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import lombok.Data;
|
|
/**
|
* ${comments}
|
*
|
* @author chenshun
|
* @email sunlightcs@gmail.com
|
* @date 2023-09-21 19:07:03
|
*/
|
@Data
|
@TableName("sys_dict")
|
public class SysDictEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* $column.comments
|
*/
|
@TableId
|
private String id;
|
/**
|
* $column.comments
|
*/
|
private String value;
|
/**
|
* $column.comments
|
*/
|
private String label;
|
/**
|
* $column.comments
|
*/
|
private String type;
|
/**
|
* $column.comments
|
*/
|
private String description;
|
/**
|
* $column.comments
|
*/
|
private Integer sort;
|
/**
|
* $column.comments
|
*/
|
private String parentId;
|
/**
|
* $column.comments
|
*/
|
private String createBy;
|
/**
|
* $column.comments
|
*/
|
private Date createDate;
|
/**
|
* $column.comments
|
*/
|
private String updateBy;
|
/**
|
* $column.comments
|
*/
|
private Date updateDate;
|
/**
|
* $column.comments
|
*/
|
private String remarks;
|
/**
|
* $column.comments
|
*/
|
private String delFlag;
|
/**
|
* $column.comments
|
*/
|
private String interNo;
|
/**
|
* $column.comments
|
*/
|
private String icon;
|
|
}
|