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/25 14:23
|
*/
|
@Data
|
public class SX2023Api1210 implements Serializable {
|
|
@PropertyDef(label = "粮食性质转变单号")
|
@JsonProperty("LSXZZBDH")
|
private String lsxzzbdh;
|
|
@PropertyDef(label = "货位代码")
|
@JsonProperty("HWDM")
|
private String hwdm;
|
|
@PropertyDef(label = "粮食数量(公斤)")
|
@JsonProperty("LSSL")
|
private Double lssl;
|
|
@PropertyDef(label = "划转数量(公斤)")
|
@JsonProperty("HZSL")
|
private Double hzsl;
|
|
@PropertyDef(label = "批准文号")
|
@JsonProperty("BZWH")
|
private String bzwh;
|
|
@PropertyDef(label = "粮食品种代码")
|
@JsonProperty("LSPZDM")
|
private String lspzdm;
|
|
@PropertyDef(label = "划转前粮食性质代码")
|
@JsonProperty("HZQLSXZDM")
|
private String hzqlsxzdm;
|
|
@PropertyDef(label = "划转后粮食性质代码")
|
@JsonProperty("HZHLSXZDM")
|
private String hzhlsxzdm;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "划转日期")
|
@JsonProperty("HZHLSXZDM")
|
private Date hzrq;
|
|
@PropertyDef(label = "仓储审核人")
|
@JsonProperty("CCSHR")
|
private String ccshr;
|
|
@PropertyDef(label = "质检审核人")
|
@JsonProperty("ZJSHR")
|
private String zjshr;
|
|
@PropertyDef(label = "统计审核人")
|
@JsonProperty("TJSHR")
|
private String tjshr;
|
|
@PropertyDef(label = "会计审核人")
|
@JsonProperty("KJSHR")
|
private String kjshr;
|
|
@PropertyDef(label = "领导审核人")
|
@JsonProperty("LDSHR")
|
private String ldshr;
|
|
@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;
|
|
}
|