package com.fzzy.push.sx2023.data;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description
|
* @Author CZT
|
* @Date 2024/4/24 21:25
|
*/
|
@Data
|
public class SX2023Api1205 implements Serializable {
|
|
@PropertyDef(label = "货位代码")
|
@JsonProperty("HWDM")
|
private String hwdm;
|
|
@PropertyDef(label = "出库业务单号")
|
@JsonProperty("CKYWDH")
|
private String ckywdh;
|
|
@PropertyDef(label = "计划明细号")
|
@JsonProperty("JHMXH")
|
private String jhmxh;
|
|
@PropertyDef(label = "出库通知单号")
|
@JsonProperty("CKTZDH")
|
private String cktzdh;
|
|
@PropertyDef(label = "业务类型", description = "1:出库(默认)")
|
@JsonProperty("YWLX")
|
private String ywlx;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "业务日期")
|
@JsonProperty("YWRQ")
|
private Date ywrq;
|
|
@PropertyDef(label = "合同号")
|
@JsonProperty("HTH")
|
private String hth;
|
|
@PropertyDef(label = "承运人")
|
@JsonProperty("CYR")
|
private String cyr;
|
|
@PropertyDef(label = "联系电话")
|
@JsonProperty("LXDH")
|
private String lxdh;
|
|
@PropertyDef(label = "身份证号")
|
@JsonProperty("SFZH")
|
private String sfzh;
|
|
@PropertyDef(label = "运输工具")
|
@JsonProperty("YSGJ")
|
private String ysgj;
|
|
@PropertyDef(label = "卸粮地点")
|
@JsonProperty("XLDD")
|
private String xldd;
|
|
@PropertyDef(label = "车船号类型")
|
@JsonProperty("CCHLX")
|
private String cchlx;
|
|
@PropertyDef(label = "车船号")
|
@JsonProperty("CCH")
|
private String cch;
|
|
@PropertyDef(label = "挂车号")
|
@JsonProperty("GCH")
|
private String gch;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "登记时间")
|
@JsonProperty("DJSJ")
|
private Date djsj;
|
|
@PropertyDef(label = "登记门岗人员姓名")
|
@JsonProperty("DJMGRYXM")
|
private String djmgryxm;
|
|
@PropertyDef(label = "粮食品种代码")
|
@JsonProperty("LSPZDM")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食等级代码")
|
@JsonProperty("LSDJDM")
|
private String lsdjdm;
|
|
@PropertyDef(label = "粮食性质代码")
|
@JsonProperty("LSXZDM")
|
private String lsxzdm;
|
|
@PropertyDef(label = "收获年度")
|
@JsonProperty("SHND")
|
private String shnd;
|
|
@PropertyDef(label = "产地代码")
|
@JsonProperty("CDDM")
|
private String cddm;
|
|
@PropertyDef(label = "检斤类型", description = "0:称重入库(默认)1:标准包入库")
|
@JsonProperty("JJLX")
|
private String jjlx;
|
|
@PropertyDef(label = "皮重(公斤)")
|
@JsonProperty("PZ")
|
private double pz;
|
|
@PropertyDef(label = "皮重监磅员")
|
@JsonProperty("PZJBY")
|
private String pzjby;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "皮重计量时间")
|
@JsonProperty("PZJLSJ")
|
private Date pzjlsj;
|
|
@PropertyDef(label = "皮重计量员")
|
@JsonProperty("PZJLY")
|
private String pzjly;
|
|
@PropertyDef(label = "毛重(公斤)")
|
@JsonProperty("MZ")
|
private double mz;
|
|
@PropertyDef(label = "毛重监磅员")
|
@JsonProperty("MZJBY")
|
private String mzjby;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "毛重计量时间")
|
@JsonProperty("MZJLSJ")
|
private Date mzjlsj;
|
|
@PropertyDef(label = "毛重计量员")
|
@JsonProperty("MZJLY")
|
private String mzjly;
|
|
@PropertyDef(label = "包装物")
|
@JsonProperty("BZW")
|
private String bzw;
|
|
@PropertyDef(label = "标准包单包重(公斤)")
|
@JsonProperty("BZBDBZ")
|
private double bzbdbz;
|
|
@PropertyDef(label = "标准包件数(件)")
|
@JsonProperty("BZBJS")
|
private Integer bzbjs;
|
|
@PropertyDef(label = "净重(公斤)")
|
@JsonProperty("JZ")
|
private double jz;
|
|
@PropertyDef(label = "扣/增量(公斤)")
|
@JsonProperty("KZL")
|
private double kzl;
|
|
@PropertyDef(label = "值仓保管员姓名")
|
@JsonProperty("ZCBGYXM")
|
private String zcbgyxm;
|
|
@PropertyDef(label = "装卸作业单位")
|
@JsonProperty("ZXZYDW")
|
private String zxzydw;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "出门时间")
|
@JsonProperty("CMSJ")
|
private Date cmsj;
|
|
@PropertyDef(label = "出门确认门岗人员姓名")
|
@JsonProperty("CMQRMGRYXM")
|
private String cmqrmgryxm;
|
|
@PropertyDef(label = "出库结算单号")
|
@JsonProperty("CKJSDH")
|
private String ckjsdh;
|
|
@PropertyDef(label = "备注")
|
@JsonProperty("BZ")
|
private String bz;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
|
}
|