SysDictItemVO.java
626 字节
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
34
35
36
37
38
39
40
41
42
43
44
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;
}