qushaowei
2025-06-13 4b27dd367eae2f24958c6bb857fb6959dcdb7a4a
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
package org.jeecg.modules.eam.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@Accessors(chain = true)
public class MtbfVo {
 
    /**故障时间*/
    @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 faultData;
 
    @ApiModelProperty(value = "创建时间")
    @Excel(name = "创建时间", width = 20, 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")
    private java.util.Date createTime;
 
    /**故障报修单编号*/
    @Excel(name = "故障报修单编号", width = 15)
    @ApiModelProperty(value = "故障报修单编号")
    private java.lang.String reportRepairNum;
    /**设备id*/
    @Excel(name = "设备id", width = 15)
    @ApiModelProperty(value = "设备id")
    private java.lang.String equipmentId;
    /**总可利用时间*/
    @Excel(name = "总可利用时间", width = 15)
    @ApiModelProperty(value = "总可利用时间")
    private java.math.BigDecimal totalAvailableTime;
    /**故障时长*/
    @Excel(name = "故障时长", width = 15)
    @ApiModelProperty(value = "故障时长")
    private java.math.BigDecimal faultTime;
    /**维修时长*/
    @Excel(name = "维修时长", width = 15)
    @ApiModelProperty(value = "维修时长")
    private java.math.BigDecimal repairTime;
    /**无故障时长*/
    @Excel(name = "无故障时长", width = 15)
    @ApiModelProperty(value = "无故障时长")
    private java.math.BigDecimal noFaultTime;
 
    /**状态 1报修  2维修 4 完成 */
    @TableField(exist = false)
    private String Status;
 
    /**故障开始时间*/
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private Date faultStartTime;
 
    /**维修开始时间*/
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private Date repairStartTime;
 
    /**维修完成时间*/
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private Date repairEndTime;
}