Lius
2025-02-18 3423bb9ee5b25d270a00763b69ed73970d790f63
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
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
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 java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * @author Lius
 * @date 2025/2/7 9:31
 */
@Data
@TableName("mdc_mttr_info")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdc_mttr_info对象", description = "设备故障维修表")
public class MdcMttrInfo extends JeecgEntity implements Serializable {
 
    private static final long serialVersionUID = -4164370727294921773L;
 
    /**
     * 设备编号
     */
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty(value = "设备编号")
    private String equipmentId;
 
    /**
     * 日期
     */
    @Excel(name = "日期", width = 15)
    @ApiModelProperty(value = "日期")
    private String theDate;
 
    /**
     * 日历时间
     */
    @Excel(name = "日历时间", width = 15)
    @ApiModelProperty(value = "日历时间(hour)")
    private BigDecimal calendarLong = BigDecimal.ZERO;
 
    /**
     * 总故障停机时间
     */
    @Excel(name = "总故障停机时间", width = 15)
    @ApiModelProperty(value = "总故障停机时间(hour)")
    private BigDecimal totalDownLong = BigDecimal.ZERO;
 
    /**
     * 总故障次数
     */
    @Excel(name = "总故障次数", width = 15)
    @ApiModelProperty(value = "总故障次数")
    private Integer totalDownCount = 0;
 
    /**
     * MTBF
     */
    @Excel(name = "MTBF", width = 15)
    @ApiModelProperty(value = "MTBF(hour)")
    private BigDecimal mtbf = BigDecimal.ZERO;
 
    /**
     * 总维修时间
     */
    @Excel(name = "总维修时间", width = 15)
    @ApiModelProperty(value = "总维修时间(hour)")
    private BigDecimal totalRepairLong = BigDecimal.ZERO;
 
    /**
     * 总维修次数
     */
    @Excel(name = "总维修次数", width = 15)
    @ApiModelProperty(value = "总维修次数")
    private Integer totalRepairCount = 0;
 
    /**
     * MTTR
     */
    @Excel(name = "MTTR", width = 15)
    @ApiModelProperty(value = "MTTR(hour)")
    private BigDecimal mttr = BigDecimal.ZERO;
 
}