package com.ld.igds.io.request;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 粮情分机操作配置
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class GrainSerConfRequest extends BaseRequest {
|
|
|
private int cableX;
|
private int cableY;
|
private int cableZ;
|
|
@PropertyDef(label = "供电模式", description = "01:太阳能 02:220V")
|
private String powerModel= "02";
|
|
@PropertyDef(label = "电缆类型")
|
private String cableType;
|
|
@PropertyDef(label = "电缆制式")
|
private String cableFormat;
|
|
@PropertyDef(label = "组织编码", description = "用于远程配置调用")
|
private String orgId;
|
|
|
// ----分机电缆参数配置 ------//
|
@PropertyDef(label = "修改标识", description = "2点号修改 3列号修改,4根号修改,5同步电缆,6根号替换")
|
private Integer editTag;
|
|
@PropertyDef(label = "修改的列号")
|
private Integer editCol;
|
|
@PropertyDef(label = "值1", description = "根据不同的场景灵活应用")
|
private Integer value1;
|
|
@PropertyDef(label = "值2", description = "根据不同的场景灵活应用")
|
private Integer value2;
|
|
@PropertyDef(label = "采集通道")
|
private Integer passCode;
|
|
|
}
|