You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
|
|
*
|
|
|
|
* https://www.renren.io
|
|
|
|
*
|
|
|
|
* 版权所有,侵权必究!
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.epmet.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 数据字典
|
|
|
|
*
|
|
|
|
* @author Mark sunlightcs@gmail.com
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
@TableName("sys_dict_data")
|
|
|
|
public class SysDictDataEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(type = IdType.ID_WORKER_STR)
|
|
|
|
private String id;
|
|
|
|
/**
|
|
|
|
* 字典类型ID
|
|
|
|
*/
|
|
|
|
private Long dictTypeId;
|
|
|
|
/**
|
|
|
|
* 字典标签
|
|
|
|
*/
|
|
|
|
private String dictLabel;
|
|
|
|
/**
|
|
|
|
* 字典值
|
|
|
|
*/
|
|
|
|
private String dictValue;
|
|
|
|
/**
|
|
|
|
* 父级字典值 顶级:0
|
|
|
|
*/
|
|
|
|
private String dictPValue;
|
|
|
|
/**
|
|
|
|
* 备注
|
|
|
|
*/
|
|
|
|
private String remark;
|
|
|
|
/**
|
|
|
|
* 排序
|
|
|
|
*/
|
|
|
|
private Integer sort;
|
|
|
|
}
|