SysDictPage.java
823 字节
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
package com.skua.modules.system.vo;
import com.skua.modules.system.entity.SysDictItem;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
import java.util.List;
@Data
public class SysDictPage {
/**
* 主键
*/
private String id;
/**
* 字典名称
*/
@Excel(name = "字典名称", width = 20)
private String dictName;
/**
* 字典编码
*/
@Excel(name = "字典编码", width = 30)
private String dictCode;
/**
* 删除状态
*/
private Integer delFlag;
/**
* 描述
*/
@Excel(name = "描述", width = 30)
private String description;
@ExcelCollection(name = "字典列表")
private List<SysDictItem> sysDictItemList;
}