You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.3 KiB
Java
81 lines
1.3 KiB
Java
1 year ago
|
package com.supervision.model;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 通用字典表
|
||
|
* @TableName vp_common_dic
|
||
|
*/
|
||
|
@TableName(value ="vp_common_dic")
|
||
|
@Data
|
||
|
public class CommonDic implements Serializable {
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
@TableId(type = IdType.AUTO)
|
||
|
private Long id;
|
||
|
|
||
|
/**
|
||
|
* 字段码值
|
||
|
*/
|
||
|
private String code;
|
||
|
|
||
|
/**
|
||
|
* 中文名
|
||
|
*/
|
||
|
private String nameCh;
|
||
|
|
||
|
/**
|
||
|
* 英文名
|
||
|
*/
|
||
|
private String nameEn;
|
||
|
|
||
|
/**
|
||
|
* 分组code
|
||
|
*/
|
||
|
private String groupCode;
|
||
|
|
||
|
/**
|
||
|
* 父级id
|
||
|
*/
|
||
|
private String parentId;
|
||
|
|
||
|
/**
|
||
|
* 优先级,用来做排序等操作
|
||
|
*/
|
||
|
private Integer priority;
|
||
|
|
||
|
/**
|
||
|
* 说明
|
||
|
*/
|
||
|
private String description;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private String createUserId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private String updateUserId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private Date updateTime;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|