| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.ruoyi.demo.domain.vo;
- import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
- import com.alibaba.excel.annotation.ExcelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * 测试树表视图对象 test_tree
- *
- * @author Lion Li
- * @date 2021-07-26
- */
- @Data
- @ExcelIgnoreUnannotated
- public class TestTreeVo {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- private Long id;
- /**
- * 父id
- */
- @ExcelProperty(value = "父id")
- private Long parentId;
- /**
- * 部门id
- */
- @ExcelProperty(value = "部门id")
- private Long deptId;
- /**
- * 用户id
- */
- @ExcelProperty(value = "用户id")
- private Long userId;
- /**
- * 树节点名
- */
- @ExcelProperty(value = "树节点名")
- private String treeName;
- /**
- * 创建时间
- */
- @ExcelProperty(value = "创建时间")
- private Date createTime;
- }
|