cuilei
9 天以前 be784e31cdf09d66c37f811db84e1a6e2bfed8d2
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
45
package org.jeecg.modules.system.vo;
 
import lombok.Data;
import org.jeecg.modules.system.entity.SysDictItem;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
 
import java.util.List;
 
/**
 * @Description: 系统字典分页
 * @author: jeecg-boot
 */
@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;
 
}