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
| package com.ruoyi.domain.excel;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import com.ruoyi.common.annotation.Excel;
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.Date;
|
| /**
| * @Author Jinquan_Ou
| * @Description
| * @Date 2023-05-13 20:17
| * @Version 1.0.0
| **/
| @Data
| public class ZfCollectionExcelBean implements Serializable {
| private static final long serialVersionUID = 1L;
| /**
| * 类别
| */
| // @Excel(name = "类别")
| // private String type;
| /**
| * 获得时间
| */
| @Excel(name = "获得时间", dateFormat = "yyyy-MM-dd")
| @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
| private Date happenTime;
|
| /**
| * 名字
| */
| @Excel(name = "名称")
| private String name;
|
| /**
| * 来源
| */
| @Excel(name = "来源")
| private String source;
|
| /**
| * 拥有者
| */
| @Excel(name = "拥有者")
| private String owner;
|
| /**
| * 价值
| */
| @Excel(name = "价值")
| private String price;
|
| /**
| * 存放位置
| */
| @Excel(name = "存放位置")
| private String location;
|
| /**
| * 备注
| */
| @Excel(name = "备注")
| private String remark;
|
|
| }
|
|