package com.ld.igds.io.request;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 粮情检测请求
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class CheckGrainRequest extends BaseRequest {
|
|
private int cableStart;//电缆开始
|
private int cableEnd;//电缆截至
|
|
private String cableRule;
|
|
private String thSerId;//仓温仓湿使用的分机
|
|
private String thConf;//仓温湿通道
|
|
|
public CheckGrainRequest() {
|
super();
|
}
|
}
|