package com.ld.igds.inout.dto; import com.bstek.dorado.annotation.PropertyDef; import lombok.Data; import java.io.Serializable; /** * 分仓收支存表 * @author vince * */ @Data public class ReportInoutDepotData implements Serializable{ /** * */ private static final long serialVersionUID = 1L; @PropertyDef(label = "仓库编号") private String depotId; @PropertyDef(label = "仓库名称") private String depotName; @PropertyDef(label = "粮食性质") private String foodType; @PropertyDef(label = "粮食品种") private String foodVariety; @PropertyDef(label = "仓库名称") private String foodVarietyName; @PropertyDef(label = "初期库存") private double cqkc =0.0; @PropertyDef(label = "收购") private double inNum =0.0 ; @PropertyDef(label = "溢余") private double overNum =0.0 ; @PropertyDef(label = "入库合计") private double inSum =0.0; @PropertyDef(label = "调出") private double outNum =0.0 ; @PropertyDef(label = "损耗") private double lossNum ; @PropertyDef(label = "出库合计") private double outSum =0.0; @PropertyDef(label = "期末库存") private double qmkc =0.0; @PropertyDef(label = "序号") private String remarks; }