jiazx0107@163.com
2023-05-17 620eab6cca2bc9ef9ea6d3067a0a5ba1deadbd1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;//查询条件开始设计
 
 
}