wuzeyu
2024-06-06 93613eac6de9c2b202a298e5524deb83f19d0744
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
 
    private String commandCode;
 
    private Long intakeId;
 
    private String rtuAddr;
 
    private String protocol;
 
    private Object param;
 
    private String rtuResultSendWebUrl;
 
    private Long operator;
 
}