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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fzzy.api.entity.ApiParent;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 上海市接口-2101 检斤单
 *
 * @author czt
 * @date 2023/8/17
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class SH2023Api2101 implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    @PropertyDef(label = "检斤单号")
    private String jjdh;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "检斤日期")
    private Date jjrq;
 
    @PropertyDef(label = "驳运单号/库际调拨单号")
    private String inbillno;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "记账日期")
    private Date jzrq;
 
    @PropertyDef(label = "作业单号")
    private String zydh;
 
    /**
     * 1:入库作业 2:中转调出 3:中转进仓
     * 4:出库作业 5:库存调出 6:库存调入 7:移仓桩
     */
    @PropertyDef(label = "作业类型")
    private String zylx;
 
    @PropertyDef(label = "客户编号")
    private String khmc;
 
    @PropertyDef(label = "来粮预报号/提货单号")
    private String psplan;
 
    @PropertyDef(label = "合同号")
    private String hth;
 
    @PropertyDef(label = "车船号")
    private String cch;
 
    @PropertyDef(label = "中转车船号")
    private String zzchh;
 
    @PropertyDef(label = "品种大类")
    private String lspzdmdl;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzdm;
 
    @PropertyDef(label = "来粮代码")
    private String lldm;
 
    @PropertyDef(label = "廒间代码")
    private String ajdm;
 
    @PropertyDef(label = "货位代码")
    private String hwdm;
 
    @PropertyDef(label = "移入廒间代码")
    private String yrajdh;
 
    @PropertyDef(label = "移入货位代码")
    private String yrhwdm;
 
    @PropertyDef(label = "装卸班")
    private String zxb;
 
    @PropertyDef(label = "包装物增扣量(公斤)")
    private double bzwzkl;
 
    @PropertyDef(label = "毛重(公斤)")
    private double mz;
 
    @PropertyDef(label = "净重(公斤)")
    private double jz;
 
    @PropertyDef(label = "数据状态")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    private Date zhgxsj;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
    @PropertyDef(label = "标记位")
    private String bjw;
 
}