czt
2024-04-23 a03d12962c4439cce9193f178c02164db20f734c
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
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 SH2023Api2203 implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 4416097604510905407L;
 
    @PropertyDef(label = "合同号")
    private String htbh;
 
    @PropertyDef(label = "标的号")
    private String bdh;
 
    @PropertyDef(label = "成交日期")
    @JSONField(format = "yyMMdd")
    private Date cjrq;
 
    @PropertyDef(label = "交易状态")
    private String jyzt;
 
    @PropertyDef(label = "粮食性质")
    private String lsxz;
 
    @PropertyDef(label = "粮食品种大类")
    private String lspzdl;
 
    @PropertyDef(label = "粮食品种明细")
    private String lspzmx;
 
    @PropertyDef(label = "生产年份")
    private String scnf;
 
    @PropertyDef(label = "库点")
    private String kd;
 
    @PropertyDef(label = "买方全称")
    private String bmfqc;
 
    @PropertyDef(label = "卖方全称")
    private String smfqc;
 
    @PropertyDef(label = "成交数量")
    private double cjsl;
 
    @PropertyDef(label = "成交金额")
    private double cjje;
 
    @PropertyDef(label = "起拍价")
    private double qpj;
 
    @PropertyDef(label = "成交价")
    private double cjj;
 
    @PropertyDef(label = "溢价幅度")
    private double yjfd;
 
    @PropertyDef(label = "买方手续费")
    private double bmfsxf;
 
    @PropertyDef(label = "卖方手续费")
    private double smfsxf;
 
    @PropertyDef(label = "采购/销售类型")
    private String lx;
 
    @PropertyDef(label = "买方行政区划")
    private String bmfxzqh;
 
    @PropertyDef(label = "卖方行政区划")
    private String smfxzqh;
 
    @PropertyDef(label = "货位名称")
    private String hwmc;
 
    @PropertyDef(label = "交易行政区划")
    private String jyxzqh;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
}