lyh
9 小时以前 58f63d0e061123b15f780d294272d8a461f183db
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package org.jeecg.modules.eam.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description: 设备三级保养明细
 * @Author: jeecg-boot
 * @Date: 2025-04-29
 * @Version: V1.0
 */
@Data
@TableName("eam_third_maintenance_order_detail")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "eam_third_maintenance_order_detail对象", description = "设备三级保养明细")
public class EamThirdMaintenanceOrderDetail extends JeecgEntity implements Serializable {
 
    private static final long serialVersionUID = -862977193541514910L;
 
    /**
     * 工单ID
     */
    @Excel(name = "工单ID", width = 15)
    @ApiModelProperty(value = "工单ID")
    private String orderId;
    /**
     * 项目序号
     */
    @Excel(name = "项目序号", width = 15)
    @ApiModelProperty(value = "项目序号")
    private Integer itemCode;
    /**
     * 部位
     */
    @Excel(name = "部位", width = 15)
    @ApiModelProperty(value = "部位")
    private String itemPart;
    /**
     * 保养内容
     */
    @Excel(name = "保养内容", width = 15)
    @ApiModelProperty(value = "保养内容")
    private String itemName;
    /**
     * 验收标准
     */
    @Excel(name = "验收标准", width = 15)
    @ApiModelProperty(value = "验收标准")
    private String itemDemand;
    /**
     * 保养结果
     */
    @Excel(name = "保养结果", width = 15)
    @ApiModelProperty(value = "保养结果")
    private String maintenanceResult;
    /**
     * 异常描述
     */
    @Excel(name = "异常描述", width = 15)
    @ApiModelProperty(value = "异常描述")
    private String exceptionDescription;
    /**
     * 第一次检验结果
     */
    @Excel(name = "第一次检验结果", width = 15)
    @ApiModelProperty(value = "第一次检验结果")
    private String firstInspectResult;
    /**
     * 第一次检验时间
     */
    @ApiModelProperty(value = "第一次检验时间")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date firstInspectTime;
    /**
     * 第一次检验异常
     */
    @Excel(name = "第一次检验异常", width = 15)
    @ApiModelProperty(value = "第一次检验异常")
    private String firstInspectException;
    /**
     * 第二次检验结果
     */
    @Excel(name = "第二次检验结果", width = 15)
    @ApiModelProperty(value = "第二次检验结果")
    private String secondInspectResult;
    /**
     * 第二次检验时间
     */
    @ApiModelProperty(value = "第二次检验时间")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date secondInspectTime;
    /**
     * 第二次检验异常
     */
    @Excel(name = "第二次检验异常", width = 15)
    @ApiModelProperty(value = "第二次检验异常")
    private String secondInspectException;
}