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_demo
12  *
13  * @author Lion Li
14  * @date 2021-07-26
15  */
16 @Data
17 @ExcelIgnoreUnannotated
18 public class TestDemoVo {
19
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * 主键
24      */
25     @ExcelProperty(value = "主键")
26     private Long id;
27
28     /**
29      * 部门id
30      */
31     @ExcelProperty(value = "部门id")
32     private Long deptId;
33
34     /**
35      * 用户id
36      */
37     @ExcelProperty(value = "用户id")
38     private Long userId;
39
40     /**
41      * 排序号
42      */
43     @ExcelProperty(value = "排序号")
44     private Integer orderNum;
45
46     /**
47      * key键
48      */
49     @ExcelProperty(value = "key键")
50     private String testKey;
51
52     /**
53      * 值
54      */
55     @ExcelProperty(value = "值")
56     private String value;
57
58     /**
59      * 创建时间
60      */
61     @ExcelProperty(value = "创建时间")
62     private Date createTime;
63
64     /**
65      * 创建人
66      */
67     @ExcelProperty(value = "创建人")
68     private String createBy;
69
70     /**
71      * 更新时间
72      */
73     @ExcelProperty(value = "更新时间")
74     private Date updateTime;
75
76     /**
77      * 更新人
78      */
79     @ExcelProperty(value = "更新人")
80     private String updateBy;
81
82
83 }