New file |
| | |
| | | package com.dy.pipIrrGlobal.command.dto; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-06-04 11:25 |
| | | * @LastEditTime 2024-06-04 11:25 |
| | | * @Description 构造命令、发送命令并处理请求结果及执行结果所需参数对象 |
| | | */ |
| | | |
| | | @Data |
| | | public class Param { |
| | | public static final long serialVersionUID = 202406041126001L; |
| | | |
| | | private Long comId; |
| | | |
| | | /** |
| | | * 命令类型,1-开阀,2-关阀 |
| | | */ |
| | | private Byte comType; |
| | | |
| | | private String commandCode; |
| | | |
| | | private String commandName; |
| | | |
| | | private Long intakeId; |
| | | |
| | | private String rtuAddr; |
| | | |
| | | private String protocol; |
| | | |
| | | private Long vcId; |
| | | |
| | | /** |
| | | * 视图对象 |
| | | */ |
| | | private Object param; |
| | | |
| | | private String rtuResultSendWebUrl; |
| | | |
| | | private Long operator; |
| | | |
| | | /** |
| | | * 开阀类型;1-轮灌 |
| | | */ |
| | | private Byte openType; |
| | | |
| | | } |