TestTreeVo.java 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.ruoyi.demo.domain.vo;
  2. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import lombok.Data;
  5. import java.util.Date;
  6. /**
  7. * 测试树表视图对象 test_tree
  8. *
  9. * @author Lion Li
  10. * @date 2021-07-26
  11. */
  12. @Data
  13. @ExcelIgnoreUnannotated
  14. public class TestTreeVo {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * 主键
  18. */
  19. private Long id;
  20. /**
  21. * 父id
  22. */
  23. @ExcelProperty(value = "父id")
  24. private Long parentId;
  25. /**
  26. * 部门id
  27. */
  28. @ExcelProperty(value = "部门id")
  29. private Long deptId;
  30. /**
  31. * 用户id
  32. */
  33. @ExcelProperty(value = "用户id")
  34. private Long userId;
  35. /**
  36. * 树节点名
  37. */
  38. @ExcelProperty(value = "树节点名")
  39. private String treeName;
  40. /**
  41. * 创建时间
  42. */
  43. @ExcelProperty(value = "创建时间")
  44. private Date createTime;
  45. }