jiazx0107@163.com
2023-12-13 3a56308b1a8f3f453a56da52af64ad4ba669aec1
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
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 SH2023Api2104 implements Serializable {
 
    private static final long serialVersionUID = 9157617424050247565L;
 
    @PropertyDef(label = "驳运单号")
    private String bydh;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
    @PropertyDef(label = "记账日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date jzrq;
 
    @PropertyDef(label = "客户名称")
    private String khmc;
 
    @PropertyDef(label = "来粮预报号/提货单号")
    private String psplan;
 
    @PropertyDef(label = "合同号")
    private String hth;
 
    @PropertyDef(label = "车船号")
    private String cch;
 
    @PropertyDef(label = "品种大类")
    private String lspzdm;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzdm;
 
    @PropertyDef(label = "来粮代码")
    private String lldm;
 
    @PropertyDef(label = "净重")
    private Double jz;
 
    @PropertyDef(label = "数据状态")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
    @PropertyDef(label = "标记位")
    private String bjw;
}