| package com.fzzy.push.gd2023.dto; | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import com.fzzy.api.entity.ApiParent; | 
| import lombok.Data; | 
| import lombok.EqualsAndHashCode; | 
|   | 
| import java.io.Serializable; | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 接口表-损益单 | 
|  */ | 
| @Data | 
| @EqualsAndHashCode(callSuper = false) | 
| public class Gd2023Api1209 extends ApiParent implements Serializable { | 
|      | 
|   | 
|     /** | 
|      *  | 
|      */ | 
|     private static final long serialVersionUID = -5548540780391804729L; | 
|   | 
|   | 
|     @PropertyDef(label = "损溢单号" ) | 
|     private String sydh; | 
|   | 
|     @PropertyDef(label = "货位代码" ) | 
|     private String hwdm; | 
|   | 
|     @PropertyDef(label = "统一货位编码" ) | 
|     private String tyhwbm; | 
|   | 
|     @JSONField(format = "yyyy-MM-dd") | 
|     @PropertyDef(label = "业务日期" ) | 
|     private Date ywrq; | 
|   | 
|     @PropertyDef(label = "损溢类型",description = "1:损失,2:损耗,3.溢余, 4.其他") | 
|     private String sylx; | 
|   | 
|     @PropertyDef(label = "损溢环节",description = "1:入库损溢,2:出库损溢,3.其他") | 
|     private String syhj; | 
|   | 
|     @PropertyDef(label = "入库净重(公斤)" ) | 
|     private Double rkjz; | 
|   | 
|     @PropertyDef(label = "入库数量" ) | 
|     private Double rksl; | 
|   | 
|     @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 Integer ccsc; | 
|   | 
|     @PropertyDef(label = "实际损益数量" ) | 
|     private Double jzsysl; | 
|   | 
|     @PropertyDef(label = "其中水杂减量(公斤)" ) | 
|     private Double qzszkl; | 
|   | 
|     @PropertyDef(label = "其中:自然损耗定额(公斤)" ) | 
|     private Double qzzrshde; | 
|   | 
|     @PropertyDef(label = "是否超耗" ) | 
|     private Integer sfch; | 
|   | 
|     @PropertyDef(label = "超耗数量(公斤)" ) | 
|     private Double chsl; | 
|   | 
|     @PropertyDef(label = "损益是否正常" ) | 
|     private String sysfzc; | 
|   | 
|     @PropertyDef(label = "损溢原因" ) | 
|     private String syyy; | 
|   | 
|     @PropertyDef(label = "出清确认标识" ) | 
|     private Integer cqqrbs; | 
|   | 
|     @PropertyDef(label = "出清确认时间" ) | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     private Date cqqrsj; | 
|   | 
|     @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 czbz; | 
|   | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     @PropertyDef(label = "更新时间") | 
|     private Date zhgxsj; | 
| } |