a97b29d1431f5fc65b8870284f3ce89f0d45a35f.svn-base 825 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package org.jeecg.modules.system.vo;
  2. import lombok.Data;
  3. import org.jeecg.modules.system.entity.SysDictItem;
  4. import org.jeecgframework.poi.excel.annotation.Excel;
  5. import org.jeecgframework.poi.excel.annotation.ExcelCollection;
  6. import java.util.List;
  7. @Data
  8. public class SysDictPage {
  9. /**
  10. * 主键
  11. */
  12. private String id;
  13. /**
  14. * 字典名称
  15. */
  16. @Excel(name = "字典名称", width = 20)
  17. private String dictName;
  18. /**
  19. * 字典编码
  20. */
  21. @Excel(name = "字典编码", width = 30)
  22. private String dictCode;
  23. /**
  24. * 删除状态
  25. */
  26. private Integer delFlag;
  27. /**
  28. * 描述
  29. */
  30. @Excel(name = "描述", width = 30)
  31. private String description;
  32. @ExcelCollection(name = "字典列表")
  33. private List<SysDictItem> sysDictItemList;
  34. }