SysDictItemVO.java 626 字节
package com.skua.modules.system.vo;

import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;


/**
 *
 */
@Data
public class SysDictItemVO {


    private String id;

    /**
     * 字典id
     */
    private String dictId;

    /**
     * 字典项文本
     */
    @Excel(name = "字典项文本", width = 20)
    private String itemText;

    /**
     * 字典项值
     */
    @Excel(name = "字典项值", width = 30)
    private String itemValue;

    private String description;

    /**
     * 排序
     */
    @Excel(name = "排序", width = 15, type = 4)
    private Integer sortOrder;




}