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