package com.ld.igds.grain.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 粮情采集点的参数
|
*/
|
@Data
|
public class GrainPointParam {
|
|
private String id;
|
|
@PropertyDef(label = "所在层")
|
private int z;
|
|
@PropertyDef(label = "所在列")
|
private int x;
|
|
@PropertyDef(label = "所在行")
|
private int y;
|
|
private String companyId;
|
|
private String depotId;
|
|
private String batchId;
|
|
private int numX;
|
|
private int numY;
|
|
private int numZ;
|
|
private int num;
|
|
private Date start;//查询条件开始设计
|
|
|
}
|