cuikaidong
2025-06-12 066063ed92fdd40da4dfe21770557f3adba3e1af
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package org.jeecg.modules.iot.mdc.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.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
 
/**
 * @Description: 采集设备表
 * @Author: liuS
 * @Date: 2023-03-23
 * @Version: V1.0
 */
@Data
@TableName("Equipment")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "Equipment对象", description = "采集设备表")
public class Equipment {
 
    /**
     * 系统id
     */
    @Excel(name = "系统id", width = 15)
    @ApiModelProperty(value = "系统id")
    private String beltlineid;
    /**
     * 设备编码
     */
    @Excel(name = "设备编码", width = 15)
    @ApiModelProperty(value = "设备编码")
    @TableId(type = IdType.AUTO)
    private String equipmentid;
    /**
     * 工厂id
     */
    @Excel(name = "工厂id", width = 15)
    @ApiModelProperty(value = "工厂id")
    private String factoryid;
    /**
     * 系统名称
     */
    @Excel(name = "系统名称", width = 15)
    @ApiModelProperty(value = "系统名称")
    private String beltlinename;
    /**
     * 设备类型
     */
    @Excel(name = "设备类型", width = 15)
    @ApiModelProperty(value = "设备类型")
    private String equipmentmodel;
    /**
     * 设备名称
     */
    @Excel(name = "设备名称", width = 15)
    @ApiModelProperty(value = "设备名称")
    private String equipmentname;
    /**
     * 设备分类
     */
    @Excel(name = "设备分类", width = 15)
    @ApiModelProperty(value = "设备分类")
    private String equipmentclassify;
    /**
     * 设备位置
     */
    @Excel(name = "设备位置", width = 15)
    @ApiModelProperty(value = "设备位置")
    private String equipmentlocation;
    /**
     * 报警号
     */
    @Excel(name = "报警号", width = 15)
    @ApiModelProperty(value = "报警号")
    private String alarm;
    /**
     * 采集时间
     */
    @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")
    @ApiModelProperty(value = "采集时间")
    private Date collecttime;
    /**
     * 设备类型
     */
    @Excel(name = "设备类型", width = 15)
    @ApiModelProperty(value = "设备类型")
    private String equipmenttype;
    /**
     * 固定位置
     */
    @Excel(name = "固定位置", width = 15)
    @ApiModelProperty(value = "固定位置")
    private String fixlocation;
    /**
     * 实时状态
     */
    @Excel(name = "实时状态", width = 15)
    @ApiModelProperty(value = "实时状态")
    private Integer oporation;
    /**
     * 设备数据
     */
    @Excel(name = "设备数据", width = 15)
    @ApiModelProperty(value = "设备数据")
    private Object equipmentdata;
    /**
     * 设备ip
     */
    @Excel(name = "设备ip", width = 15)
    @ApiModelProperty(value = "设备ip")
    private String equipmentip;
    /**
     * 备注
     */
    @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
    private String remark;
    /**
     * 报警号
     */
    @Excel(name = "报警号", width = 15)
    @ApiModelProperty(value = "报警号")
    private String alarmno;
    /**
     * 报警内容
     */
    @Excel(name = "报警内容", width = 15)
    @ApiModelProperty(value = "报警内容")
    private String alarmcontent;
    /**
     * 产品数量
     */
    @Excel(name = "产品数量", width = 15)
    @ApiModelProperty(value = "产品数量")
    private String productcount;
    /**
     * 驱动类型
     */
    @Excel(name = "驱动类型", width = 15)
    @ApiModelProperty(value = "驱动类型")
    private String drivetype;
    /**
     * 数据端口
     */
    @Excel(name = "数据端口", width = 15)
    @ApiModelProperty(value = "数据端口")
    private String dataport;
    /**
     * 控制系统
     */
    @Excel(name = "控制系统", width = 15)
    @ApiModelProperty(value = "控制系统")
    private String controlsystem;
    /**
     * 表名
     */
    @Excel(name = "表名", width = 15)
    @ApiModelProperty(value = "表名")
    private String savetablename;
    /**
     * 重要性
     */
    @Excel(name = "重要性", width = 15)
    @ApiModelProperty(value = "重要性")
    private Integer isimportant;
    /**
     * 维护状态
     */
    @Excel(name = "维护状态", width = 15)
    @ApiModelProperty(value = "维护状态")
    private Integer maintaintype;
    /**
     * 高低控制
     */
    @Excel(name = "高低控制", width = 15)
    @ApiModelProperty(value = "高低控制")
    private String highlowcontrol;
}