疯狂的狮子li
2021-08-04 0539c2f927f3f2e9f5bcaa711b79465479e27f8f
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDictData.java
@@ -1,10 +1,11 @@
package com.ruoyi.common.core.domain.entity;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.Excel.ColumnType;
import com.ruoyi.common.annotation.ExcelDictFormat;
import com.ruoyi.common.constant.UserConstants;
import com.ruoyi.common.convert.ExcelDictConvert;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
@@ -18,7 +19,7 @@
/**
 * 字典数据表 sys_dict_data
 *
 *
 * @author ruoyi
 */
@@ -26,82 +27,109 @@
@NoArgsConstructor
@Accessors(chain = true)
@TableName("sys_dict_data")
public class SysDictData implements Serializable
{
    private static final long serialVersionUID = 1L;
@ExcelIgnoreUnannotated
public class SysDictData implements Serializable {
   private static final long serialVersionUID = 1L;
    /** 字典编码 */
    @Excel(name = "字典编码", cellType = ColumnType.NUMERIC)
    @TableId(value = "dict_code",type = IdType.AUTO)
    private Long dictCode;
   /**
    * 字典编码
    */
   @ExcelProperty(value = "字典编码")
   @TableId(value = "dict_code", type = IdType.AUTO)
   private Long dictCode;
    /** 字典排序 */
    @Excel(name = "字典排序", cellType = ColumnType.NUMERIC)
    private Long dictSort;
   /**
    * 字典排序
    */
   @ExcelProperty(value = "字典排序")
   private Long dictSort;
    /** 字典标签 */
    @Excel(name = "字典标签")
    @NotBlank(message = "字典标签不能为空")
    @Size(min = 0, max = 100, message = "字典标签长度不能超过100个字符")
    private String dictLabel;
   /**
    * 字典标签
    */
   @ExcelProperty(value = "字典标签")
   @NotBlank(message = "字典标签不能为空")
   @Size(min = 0, max = 100, message = "字典标签长度不能超过100个字符")
   private String dictLabel;
    /** 字典键值 */
    @Excel(name = "字典键值")
    @NotBlank(message = "字典键值不能为空")
    @Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符")
    private String dictValue;
   /**
    * 字典键值
    */
   @ExcelProperty(value = "字典键值")
   @NotBlank(message = "字典键值不能为空")
   @Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符")
   private String dictValue;
    /** 字典类型 */
    @Excel(name = "字典类型")
    @NotBlank(message = "字典类型不能为空")
    @Size(min = 0, max = 100, message = "字典类型长度不能超过100个字符")
    private String dictType;
   /**
    * 字典类型
    */
   @ExcelProperty(value = "字典类型")
   @NotBlank(message = "字典类型不能为空")
   @Size(min = 0, max = 100, message = "字典类型长度不能超过100个字符")
   private String dictType;
    /** 样式属性(其他样式扩展) */
    @Size(min = 0, max = 100, message = "样式属性长度不能超过100个字符")
    private String cssClass;
   /**
    * 样式属性(其他样式扩展)
    */
   @Size(min = 0, max = 100, message = "样式属性长度不能超过100个字符")
   private String cssClass;
    /** 表格字典样式 */
    private String listClass;
   /**
    * 表格字典样式
    */
   private String listClass;
    /** 是否默认(Y是 N否) */
    @Excel(name = "是否默认", readConverterExp = "Y=是,N=否")
    private String isDefault;
   /**
    * 是否默认(Y是 N否)
    */
   @ExcelProperty(value = "是否默认", converter = ExcelDictConvert.class)
   @ExcelDictFormat(dictType = "sys_yes_no")
   private String isDefault;
    /** 状态(0正常 1停用) */
    @Excel(name = "状态", readConverterExp = "0=正常,1=停用")
    private String status;
   /**
    * 状态(0正常 1停用)
    */
   @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
   @ExcelDictFormat(dictType = "sys_common_status")
   private String status;
    /** 创建者 */
    @TableField(fill = FieldFill.INSERT)
    private String createBy;
   /**
    * 创建者
    */
   @TableField(fill = FieldFill.INSERT)
   private String createBy;
    /** 创建时间 */
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
   /**
    * 创建时间
    */
   @TableField(fill = FieldFill.INSERT)
   private Date createTime;
    /** 更新者 */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private String updateBy;
   /**
    * 更新者
    */
   @TableField(fill = FieldFill.INSERT_UPDATE)
   private String updateBy;
    /** 更新时间 */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
   /**
    * 更新时间
    */
   @TableField(fill = FieldFill.INSERT_UPDATE)
   private Date updateTime;
    /** 备注 */
    private String remark;
   /**
    * 备注
    */
   private String remark;
    /**
     * 请求参数
     */
    @TableField(exist = false)
    private Map<String, Object> params = new HashMap<>();
   /**
    * 请求参数
    */
   @TableField(exist = false)
   private Map<String, Object> params = new HashMap<>();
    public boolean getDefault()
    {
        return UserConstants.YES.equals(this.isDefault) ? true : false;
    }
   public boolean getDefault() {
      return UserConstants.YES.equals(this.isDefault) ? true : false;
   }
}