1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| 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;
| }
|
|