| 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; | 
|   | 
| } |