package com.fzzy.push.shjdjw2023.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 损溢单信息数据封装
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class ShjdjwApi1209 implements Serializable {
|
|
@PropertyDef(label = "损溢单号")
|
private String sydbh;
|
|
@PropertyDef(label = "单位名称")
|
private String dwmc;
|
|
@PropertyDef(label = "库点名称")
|
private String kdmc;
|
|
@PropertyDef(label = "货位代码")
|
private String hwbm;
|
|
@PropertyDef(label = "业务日期")
|
@JSONField(format = "yyyy-MM-dd")
|
private Date ywrq;
|
|
@PropertyDef(label = "入库数量")
|
private Double rksl;
|
|
@PropertyDef(label = "入库时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date rksj;
|
|
@PropertyDef(label = "出库数量")
|
private Double cksl;
|
|
@PropertyDef(label = "出库时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date cksj;
|
|
@PropertyDef(label = "损溢数量")
|
private Double sysl;
|
|
@PropertyDef(label = "损溢原因")
|
private String syyy;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@PropertyDef(label = "入库水分")
|
private Double rksf;
|
|
@PropertyDef(label = "入库杂质")
|
private Double rkzz;
|
|
@PropertyDef(label = "出库水分")
|
private Double cksf;
|
|
@PropertyDef(label = "出库杂质")
|
private Double ckzz;
|
|
@PropertyDef(label = "年限")
|
@JSONField(format = "yyyy")
|
private Date nx;
|
|
@PropertyDef(label = "辅损溢数量")
|
private Double fsysl;
|
|
@PropertyDef(label = "损耗率")
|
private Double shl;
|
|
@PropertyDef(label = "损益类型")
|
private String sylx;
|
|
@PropertyDef(label = "单据类型")
|
private String djlx;
|
|
|
}
|