| | |
| | | import com.ruoyi.common.annotation.ExcelDictFormat; |
| | | import com.ruoyi.common.convert.ExcelDictConvert; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("sys_dict_type") |
| | | @ExcelIgnoreUnannotated |
| | | @Schema(name = "字典类型业务对象") |
| | | public class SysDictType extends BaseEntity { |
| | | |
| | | /** |
| | | * 字典主键 |
| | | */ |
| | | @Schema(name = "字典主键") |
| | | @ExcelProperty(value = "字典主键") |
| | | @TableId(value = "dict_id") |
| | | private Long dictId; |
| | |
| | | /** |
| | | * 字典名称 |
| | | */ |
| | | @Schema(name = "字典名称") |
| | | @ExcelProperty(value = "字典名称") |
| | | @NotBlank(message = "字典名称不能为空") |
| | | @Size(min = 0, max = 100, message = "字典类型名称长度不能超过100个字符") |
| | |
| | | /** |
| | | * 字典类型 |
| | | */ |
| | | @Schema(name = "字典类型") |
| | | @ExcelProperty(value = "字典类型") |
| | | @NotBlank(message = "字典类型不能为空") |
| | | @Size(min = 0, max = 100, message = "字典类型类型长度不能超过100个字符") |
| | |
| | | /** |
| | | * 状态(0正常 1停用) |
| | | */ |
| | | @Schema(name = "状态(0正常 1停用)") |
| | | @ExcelProperty(value = "状态", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_normal_disable") |
| | | private String status; |
| | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @Schema(name = "备注") |
| | | private String remark; |
| | | |
| | | } |