888
Jinquan_Ou
2023-04-17 8e3f58c38fd3d552125ada6afdf88e7fc2b380a0
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
@TableName("zf_equipment")
@Data
public class ZfEquipment implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 设备名称
     */
    @Excel(name = "设备名称")
    private String name;
 
    /**
     * 记录时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd")
    private Date createDate;
 
    /**
     * 购买人
     */
    @Excel(name = "购买人")
    private String buyer;
 
    /**
     * 事项内容
     */
    @Excel(name = "事项内容")
    private String content;
 
    /**
     * 存放地点
     */
    @Excel(name = "存放地点")
    private String location;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
    /**
     * 家庭id
     */
    @Excel(name = "家庭id")
    private String familyId;
 
    private String url;
 
    @Excel(name = "是否注销",readConverterExp = "0=正常,1=已注销")
    private Integer status;
 
 
 
}