1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dy.pipIrrRemote.monitor.common;
 
import lombok.*;
import lombok.experimental.SuperBuilder;
import org.springframework.beans.factory.annotation.Value;
 
/**
 * @Author: liurunyu
 * @Date: 2025/5/9 16:11
 * @Description
 */
@Data
@SuperBuilder
public class CdParameter {
    //项目编码
    public Integer projectNo;
    //控制器类型(01(0x01):测控一体阀;02(0x02):表阀一体机;57(0x57):井电控制器)
    public String controllerType;
    //命令功能码
    public String commandCode;
}