package com.fengdu.gas.entity.response.facility;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class FacilityData {
|
/**
|
* 监测点id
|
*/
|
private Long pointId;
|
/**
|
* 监测点名称名称
|
*/
|
private String pointName;
|
/**
|
* 左边距
|
*/
|
private String left;
|
/**
|
* 上边距
|
*/
|
private String top;
|
/**
|
* 设备id
|
*/
|
private Long facilityId;
|
/**
|
* 设备名称
|
*/
|
private String facilityName;
|
/**
|
* 设备状态
|
*/
|
private String facilityState;
|
/**
|
* 设备风机状态
|
*/
|
private String facilityFanState;
|
/**
|
* 设备甲烷值
|
*/
|
private BigDecimal methaneValue;
|
/**
|
* 硫化氢值
|
*/
|
private BigDecimal hyrothionValue;
|
/**
|
* 温度
|
*/
|
private BigDecimal temperature;
|
}
|