zqy
5 天以前 b02beccf4567068cb47a3f1181a00039456c872d
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
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 21:11
 * @Version 1.0.0
 **/
@Data
public class ZfEquipmentExcelBean implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 设备名称
     */
    @Excel(name = "设备名称")
    private String name;
    /**
     * 记录时间
     */
    @Excel(name = "时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
    /**
     * 是否注销
     */
    @Excel(name = "是否注销")
    private Integer status;
 
    /**
     * 购买人
     */
    @Excel(name = "购买人")
    private String buyer;
 
    /**
     * 事项内容
     */
    @Excel(name = "事项内容")
    private String content;
 
    /**
     * 存放地点
     */
    @Excel(name = "存放地点")
    private String location;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
 
 
 
}