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
84
85
86
87
88
89
90
91
92
93
94
95
package org.jeecg.modules.eam.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: 设备信息变更记录
 * @Author: jeecg-boot
 * @Date:   2023-09-07
 * @Version: V1.0
 */
@Data
@TableName("mom_eam_equipment_update_info")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="mom_eam_equipment_update_info对象", description="设备信息变更记录")
public class EquipmentUpdateInfo implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键ID*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键ID")
    private java.lang.String id;
    /**维护类型(数据字典:equipment_update_type)*/
    @Excel(name = "维护类型(数据字典:equipment_update_type)", width = 15)
    @ApiModelProperty(value = "维护类型(数据字典:equipment_update_type)")
    @Dict(dicCode = "equipment_update_type")
    private java.lang.String updateType;
    /**变更人*/
    @Excel(name = "变更人", width = 15)
    @ApiModelProperty(value = "变更人")
    @Dict(dicCode = "id",dictTable = "sys_user",dicText = "realname")
    private java.lang.String updatePerson;
    /**变更日期*/
    @Excel(name = "变更日期", width = 15, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "变更日期")
    private java.util.Date updateDate;
    /**设备ID*/
    @Excel(name = "设备ID", width = 15)
    @ApiModelProperty(value = "设备ID")
    private java.lang.String equipmentId;
    /**旧abc标识*/
    @Excel(name = "旧abc标识", width = 15)
    @ApiModelProperty(value = "旧abc标识")
    @Dict(dicCode = "ABC-standard-result")
    private java.lang.String oldAbcTag;
    /**新abc标识*/
    @Excel(name = "新abc标识", width = 15)
    @ApiModelProperty(value = "新abc标识")
    @Dict(dicCode = "ABC-standard-result")
    private java.lang.String newAbcTag;
    /**旧质保开始日期*/
    @Excel(name = "旧质保开始日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "旧质保开始日期")
    private java.util.Date oldStart;
    /**新质保开始日期*/
    @Excel(name = "新质保开始日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "新质保开始日期")
    private java.util.Date newStart;
    /**旧质保结束日期*/
    @Excel(name = "旧质保结束日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "旧质保结束日期")
    private java.util.Date oldEnd;
    /**新质保结束日期*/
    @Excel(name = "新质保结束日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "新质保结束日期")
    private java.util.Date newEnd;
    @ApiModelProperty(value = "备注")
    private String remark;
}