ws
2023-09-20 0970d25c1ecc9a832d4f240298540695398a98d2
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 定化水检验
 *
 * @Author:YAN
 */
@Data
public class SH2023Api2204 implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 4416097604510905407L;
 
    @PropertyDef(label = "质检报告单号")
    private String zjbgdh;
 
    @PropertyDef(label = "货位代码")
    private String hwdm;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzdm;
 
    @PropertyDef(label = "粮食品种代码")
    private String lspzdm;
 
    @PropertyDef(label = "粮食等级代码")
    private String lsdjdm;
 
    @PropertyDef(label = "检验时间")
    @JSONField(format = "yyyy-MM-dd")
    private Date jysj;
 
    @PropertyDef(label = "检验人")
    private String jyr;
 
    @PropertyDef(label = "检验依据")
    private String jyyj;
 
    @PropertyDef(label = "水分")
    private double sf;
 
    @PropertyDef(label = "入库水分")
    private double rksf;
 
    @PropertyDef(label = "扦样时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date qysj;
 
    @PropertyDef(label = "来粮代码")
    private String lldm;
 
    @PropertyDef(label = "备注")
    private String bz;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
    @PropertyDef(label = "标记位")
    private String bjw;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
}