xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.dl.demo.domain.vo;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.util.Date;
 
 
/**
 * 测试单表视图对象 test_demo
 *
 * @author Lion Li
 * @date 2021-07-26
 */
@Data
@ExcelIgnoreUnannotated
public class TestDemoVo {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @ExcelProperty(value = "主键")
    private Long id;
 
    /**
     * 部门id
     */
    @ExcelProperty(value = "部门id")
    private Long deptId;
 
    /**
     * 用户id
     */
    @ExcelProperty(value = "用户id")
    private Long userId;
 
    /**
     * 排序号
     */
    @ExcelProperty(value = "排序号")
    private Integer orderNum;
 
    /**
     * key键
     */
    @ExcelProperty(value = "key键")
    private String testKey;
 
    /**
     * 值
     */
    @ExcelProperty(value = "值")
    private String value;
 
    /**
     * 创建时间
     */
    @ExcelProperty(value = "创建时间")
    private Date createTime;
 
    /**
     * 创建人
     */
    @ExcelProperty(value = "创建人")
    private String createBy;
 
    /**
     * 更新时间
     */
    @ExcelProperty(value = "更新时间")
    private Date updateTime;
 
    /**
     * 更新人
     */
    @ExcelProperty(value = "更新人")
    private String updateBy;
 
 
}