liulin
5 天以前 2b5c36b4830adf4227f248d4e10bdb90b1e5f3d8
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
package com.fengdu.gas.entity.response.facility;
 
import lombok.Data;
 
@Data
public class FacilityParameterData {
    /**
     * 监控点id
     */
    private Long pointId;
    /**
     * 监控点名称
     */
    private String pointName;
    /**
     * 设备名称
     */
    private String facilityName;
    /**
     * 设备状态
     */
    private Integer facilityState;
    /**
     * 设备状态
     */
    private String facilityStateName;
    /**
     * 氧化氢
     */
    private String hydrogenValue;
    /**
     * 甲烷
     */
    private String methaneValue;
    /**
     * 温度
     */
    private String temperatureValue;
}