package com.ld.igds.io.request;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 粮情检测请求
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class QuantityRequest extends BaseRequest {
|
|
/**
|
* 云台功能 编码 PTZFunc
|
*/
|
public String func ;
|
|
/**
|
* 云台功能附加参数,比如速度,预设点位
|
*/
|
public String par;
|
|
|
private Double length1 = 0.0 ;
|
private Double length2 = 0.0 ;
|
private Double length3 = 0.0 ;
|
private Double length4 = 0.0 ;
|
|
private Double width= 0.0;
|
private Double height= 0.0;
|
private Double lineHeight = 0.0;
|
private Double density = 0.0;
|
private Double length = 0.0;
|
|
private String ytIp;
|
private Integer ytPort;
|
private String depotType;//仓房类型
|
private Double volumeAdd = 0.0;//v体积补偿 单位 m³
|
private Double weightAdd = 0.0;//重量补偿 单位KG
|
private String sn;
|
//用于开始采集的时候提前生成批次编号
|
private String batchId;
|
}
|