package com.lxzn.framework.domain.base;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
import java.util.Date;
|
|
@Data
|
@NoArgsConstructor
|
@TableName(value = "base_single_dictionary")
|
public class SingleDictionary {
|
@TableId
|
private String dicId;
|
private String typeCode;
|
private String dicCode;
|
private String dicName;
|
private Integer dicValue;
|
private Integer priority;
|
private String description;
|
@JsonIgnore
|
@TableField(value = "create_time", select = false, fill = FieldFill.INSERT)
|
private Date createTime;
|
@JsonIgnore
|
@TableField(value = "update_time", select = false, fill = FieldFill.UPDATE)
|
private Date updateTime;
|
@JsonIgnore
|
@TableField(value = "create_user", select = false, fill = FieldFill.INSERT)
|
private String createUser;
|
@JsonIgnore
|
@TableField(value = "update_user", select = false, fill = FieldFill.UPDATE)
|
private String updateUser;
|
@JsonIgnore
|
@TableLogic
|
@TableField(value = "delete_flag", select = false)
|
private Integer deleteFlag = 0;
|
}
|