package com.nanjing.water.entity.request.waterfacility;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class ReqEditWaterFacility {
|
/**
|
* 设备id
|
*/
|
private Long id;
|
/**
|
* 最新数据上报时间间隔(单位分钟)
|
*/
|
private Integer newIntervalTime;
|
/**
|
* 历史数据上报时间间隔(单位分钟)
|
*/
|
private Integer historyIntervalTime;
|
/**
|
* 水位采集时间间隔(单位分钟)
|
*/
|
private Integer gatherIntervalTime;
|
/**
|
* 量程设置
|
*/
|
private BigDecimal range;
|
/**
|
* 高程设置
|
*/
|
private BigDecimal elevation;
|
/**
|
* 投放角度
|
*/
|
private BigDecimal putAngle;
|
/**
|
* 低水位下限
|
*/
|
private BigDecimal lowWaterLevel;
|
/**
|
* 温度下限设置
|
*/
|
private BigDecimal lowTemperature;
|
}
|