ws
2023-09-21 c972846d9e2c591120ec55c5e1feb277b10969f0
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
78
79
80
81
package com.fzzy.push.shjdjw2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Id;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 粮食入库检验信息数据封装
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class ShjdjwApi1203 implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @PropertyDef(label = "入库检验单号")
    private String qydbh;
 
    @PropertyDef(label = "货位代码")
    private String hwbm;
 
    @PropertyDef(label = "入库业务单号")
    private String ypbm;
 
    @PropertyDef(label = "扦样时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date qysj;
 
    @PropertyDef(label = "扦样人姓名")
    private String qyrxm;
 
    @PropertyDef(label = "检验项目")
    private String jyxm;
 
    @PropertyDef(label = "检验结果")
    private String jyjg;
 
    @PropertyDef(label = "增扣价")
    private String zkj;
 
    @PropertyDef(label = "增扣量")
    private String zkl;
 
    @PropertyDef(label = "检验人姓名")
    private String jyrxm;
 
    @PropertyDef(label = "检验时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private String jysj;
 
    @PropertyDef(label = "检验结论")
    private String jyjl;
 
    @PropertyDef(label = "粮食品种代码")
    private String pzbm;
 
    @PropertyDef(label = "粮食定等")
    private String lsdd;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "扦样类别")
    private String qylb;
 
    @PropertyDef(label = "扣量比例")
    private Double klbl;
 
    @PropertyDef(label = "标记位")
    private String bjw;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
 
}