package org.ruoyi.system.domain.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
import org.ruoyi.common.excel.annotation.ExcelDictFormat;
|
import org.ruoyi.common.excel.convert.ExcelDictConvert;
|
import org.ruoyi.system.domain.SysDictData;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* 字典数据视图对象 sys_dict_data
|
*
|
* @author Michelle.Chung
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = SysDictData.class)
|
public class SysDictDataVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 字典编码
|
*/
|
@ExcelProperty(value = "字典编码")
|
private Long dictCode;
|
|
/**
|
* 字典排序
|
*/
|
@ExcelProperty(value = "字典排序")
|
private Integer dictSort;
|
|
/**
|
* 字典标签
|
*/
|
@ExcelProperty(value = "字典标签")
|
private String dictLabel;
|
|
/**
|
* 字典键值
|
*/
|
@ExcelProperty(value = "字典键值")
|
private String dictValue;
|
|
/**
|
* 字典类型
|
*/
|
@ExcelProperty(value = "字典类型")
|
private String dictType;
|
|
/**
|
* 样式属性(其他样式扩展)
|
*/
|
private String cssClass;
|
|
/**
|
* 表格回显样式
|
*/
|
private String listClass;
|
|
/**
|
* 是否默认(Y是 N否)
|
*/
|
@ExcelProperty(value = "是否默认", converter = ExcelDictConvert.class)
|
@ExcelDictFormat(dictType = "sys_yes_no")
|
private String isDefault;
|
|
/**
|
* 状态(0正常 1停用)
|
*/
|
@ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
|
@ExcelDictFormat(dictType = "sys_normal_disable")
|
private String status;
|
|
/**
|
* 备注
|
*/
|
@ExcelProperty(value = "备注")
|
private String remark;
|
|
/**
|
* 创建时间
|
*/
|
@ExcelProperty(value = "创建时间")
|
private Date createTime;
|
|
}
|