package com.dy.pipIrrGlobal.voRm;
|
|
import com.dy.common.po.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
import lombok.Data;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-05-24 16:30
|
* @LastEditTime 2024-05-24 16:30
|
* @Description 未关阀对象视图
|
*/
|
|
@Data
|
@JsonPropertyOrder({"intakeNum", "isOnLine", "rtuAddr", "vcNum", "orderNo", "state", "planned"})
|
public class VoUnclosedValve implements BaseEntity {
|
private static final long serialVersionUID = 202405241634001L;
|
|
//private String commandCode;
|
|
/**
|
* 取水口编号
|
*/
|
private String intakeNum;
|
|
/**
|
* 是否在线
|
*/
|
private Boolean isOnLine;
|
|
/**
|
* 阀控器地址
|
*/
|
private String rtuAddr;
|
|
/**
|
* 虚拟卡编号
|
*/
|
private String vcNum;
|
|
/**
|
* 订单号
|
*/
|
private String orderNo;
|
|
/**
|
* 状态
|
*/
|
private String state;
|
|
/**
|
* 是否计划性开阀
|
*/
|
private Boolean planned;
|
|
//private Date openTime;
|
}
|