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;
|
}
|