package com.ruoyi.system.domain; import com.ruoyi.common.core.domain.BaseEntity; import com.ruoyi.common.annotation.Excel; import lombok.Data; /** * 字典数据对象 dictionary */ @Data public class DictionaryCondition extends BaseEntity { private static final long serialVersionUID = 1L; /** ID */ @Excel(name = "ID") private Integer vID; /** 文本值 */ @Excel(name = "文本值") private String vtext; /** 类型 */ @Excel(name = "类型") private Integer vType; /** 排序 */ @Excel(name = "排序") private Double vOrder; /** 分类 */ @Excel(name = "分类") private String vOrder2; }