package com.fzzy.push.shjdjw2023.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 czt
|
* 损溢单信息数据封装
|
*/
|
@Data
|
public class Shjdjw2023Api1209 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -8778664614878279565L;
|
|
@PropertyDef(label = "损溢单号")
|
private String sydh;
|
|
@PropertyDef(label = "货位代码")
|
private String hwdm;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "记账日期")
|
private Date jzrq;
|
|
@PropertyDef(label = "入库净重")
|
private Double rkjz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "入库时间")
|
private Date rksj;
|
|
@PropertyDef(label = "入库水分")
|
private Double rksf;
|
|
@PropertyDef(label = "入库杂质")
|
private Double rkzz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "出库时间")
|
private Date cksj;
|
|
@PropertyDef(label = "出库净重")
|
private Double ckjz;
|
|
@PropertyDef(label = "出库水分")
|
private Double cksf;
|
|
@PropertyDef(label = "出库杂质")
|
private Double ckzz;
|
|
@PropertyDef(label = "净重损溢数量")
|
private Double jzsysl;
|
|
@PropertyDef(label = "水杂减量")
|
private Double szjl;
|
|
@PropertyDef(label = "自然损耗定额")
|
private Double zrshde;
|
|
@PropertyDef(label = "超耗数量")
|
private Double chsl;
|
|
@PropertyDef(label = "损益是否正常")
|
private String sysfzc;
|
|
@PropertyDef(label = "损溢类型",description = "1:损耗,2:损失,3.其他")
|
private String sylx;
|
|
@PropertyDef(label = "损溢原因")
|
private String syyy;
|
|
@PropertyDef(label = "仓储审核人")
|
private String ccshr;
|
|
@PropertyDef(label = "质检审核人")
|
private String zjshr;
|
|
@PropertyDef(label = "统计审核人")
|
private String tjshr;
|
|
@PropertyDef(label = "会计审核人")
|
private String kjshr;
|
|
@PropertyDef(label = "领导审核人")
|
private String ldshr;
|
|
@PropertyDef(label = "备注")
|
private String bz ="无";
|
|
@PropertyDef(label = "单据类型")
|
private String djlx;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
|
@PropertyDef(label = "批次号")
|
private String pch;
|
|
@PropertyDef(label = "标记位")
|
private String bjw;
|
|
@PropertyDef(label = "粮食性质代码")
|
private String lsxzdm;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "业务日期" )
|
private Date ywrq;
|
}
|