tjx
昨天 a53e6872c70ba7c6c870627007ece21df9bcedbc
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.hk.NumericalCollection.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@TableName("device_error")
@JsonIgnoreProperties(ignoreUnknown = true)
public class DeviceError implements Serializable {
 
    /**
     * 主键自增
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * 设备id
     */
    private Integer deviceId;
 
    /**
     * 设备名称
     */
    private String deviceName;
 
    /**
     * 盒子编号
     */
    private String deviceNo;
 
    /**
     * 使用人id
     */
    private Integer optUserId;
 
    /**
     * 手动调试人id
     */
    private Integer handleUserId;
 
    /**
     * 开始时间
     */
    private String startdate;
 
    /**
     * 故障状态 0未修复 1已修复
     */
    private Integer status;
 
    /**
     * 故障天数
     */
    private Integer daynum;
 
    /**
     * 故障
     */
    private String deverr;
 
    /**
     * 故障id
     */
    private Integer deverrid;
 
    /**
     * 故障秒数
     */
    private Integer errorSeconds;
 
    /**
     * 预计维修时间
     */
    private Double maintainPlan;
 
    /**
     * 故障时长
     */
    private String longtime;
 
    /**
     * 列表分钟显示
     */
    private Integer mintime;
 
    /**
     * 检修表外键id
     */
    private Integer errorcheckid;
 
    /**
     * 是否人工修改 0默认 1修改
     */
    private Integer usertype;
 
    /**
     * 故障编号
     */
    private String code;
 
    /**
     * 操作类别
     */
    private String worktype;
 
    /**
     * 公司id
     */
    private Integer comId;
 
    /**
     * 已创建机制 0=没有,1=有
     */
    private Integer hasMethod;
 
    /**
     * 故障创建时间
     */
    private String dateCreater;
 
    /**
     * 用户id
     */
    private Integer authorId;
}