疯狂的狮子li
2022-01-11 26fc652d33fb82a75d6ec7771ca50ee414b21723
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDictType.java
@@ -30,44 +30,44 @@
@ApiModel("字典类型业务对象")
public class SysDictType extends BaseEntity {
   /**
    * 字典主键
    */
   @ApiModelProperty(value = "字典主键")
   @ExcelProperty(value = "字典主键")
   @TableId(value = "dict_id")
   private Long dictId;
    /**
     * 字典主键
     */
    @ApiModelProperty(value = "字典主键")
    @ExcelProperty(value = "字典主键")
    @TableId(value = "dict_id")
    private Long dictId;
   /**
    * 字典名称
    */
   @ApiModelProperty(value = "字典名称")
   @ExcelProperty(value = "字典名称")
   @NotBlank(message = "字典名称不能为空")
   @Size(min = 0, max = 100, message = "字典类型名称长度不能超过100个字符")
   private String dictName;
    /**
     * 字典名称
     */
    @ApiModelProperty(value = "字典名称")
    @ExcelProperty(value = "字典名称")
    @NotBlank(message = "字典名称不能为空")
    @Size(min = 0, max = 100, message = "字典类型名称长度不能超过100个字符")
    private String dictName;
   /**
    * 字典类型
    */
   @ApiModelProperty(value = "字典类型")
   @ExcelProperty(value = "字典类型")
   @NotBlank(message = "字典类型不能为空")
   @Size(min = 0, max = 100, message = "字典类型类型长度不能超过100个字符")
   private String dictType;
    /**
     * 字典类型
     */
    @ApiModelProperty(value = "字典类型")
    @ExcelProperty(value = "字典类型")
    @NotBlank(message = "字典类型不能为空")
    @Size(min = 0, max = 100, message = "字典类型类型长度不能超过100个字符")
    private String dictType;
   /**
    * 状态(0正常 1停用)
    */
   @ApiModelProperty(value = "状态(0正常 1停用)")
   @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
   @ExcelDictFormat(dictType = "sys_normal_disable")
   private String status;
    /**
     * 状态(0正常 1停用)
     */
    @ApiModelProperty(value = "状态(0正常 1停用)")
    @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
    @ExcelDictFormat(dictType = "sys_normal_disable")
    private String status;
   /**
    * 备注
    */
   @ApiModelProperty(value = "备注")
   private String remark;
    /**
     * 备注
     */
    @ApiModelProperty(value = "备注")
    private String remark;
}