package com.dy.pipIrrGlobal.voPr;
|
|
import com.dy.common.po.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
import lombok.Data;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-05-27 17:02
|
* @LastEditTime 2024-05-27 17:02
|
* @Description 在线取水口对象
|
*/
|
|
@Data
|
@JsonPropertyOrder({ "intakeId", "rtuAddr", "intakeNum", "isOnLine"})
|
public class VoOnLineIntake implements BaseEntity {
|
private static final long serialVersionUID = 202405271703001L;
|
|
/**
|
* 取水口ID
|
*/
|
private String intakeId;
|
|
/**
|
* 阀控器地址
|
*/
|
private String rtuAddr;
|
|
/**
|
* 取水口编号
|
*/
|
private String intakeNum;
|
|
/**
|
* 取水口经度
|
*/
|
private Double lng;
|
|
/**
|
* 取水口纬度
|
*/
|
private Double lat;
|
|
/**
|
* 累计流量
|
*/
|
private Double totalAmount;
|
|
/**
|
* 是否在线
|
*/
|
private Boolean isOnLine;
|
|
/**
|
* 是否绑定
|
*/
|
private Boolean isBinded;
|
|
|
/**
|
* 报警信息Json数组
|
*/
|
private String alarm;
|
}
|