package com.zy.common.service.erp.entity; import lombok.Data; /** * 入库表体 * Created by vincent on 2020/11/27 */ @Data public class InStockBillEntry { // 物料内码 private Integer FItemID; // 物料代码 private String Fnumber; // 单据内码 -- 关联 private Integer FInterID; // 分录号 private Integer FEntryID; // 单据编号 private String FSourceBillNo; // 申请数量(需入库数量) private Double FAuxQty; // 提交数量(实际入库数量) private Double FAuxCommitQty; // 实际数量 -- 实际收货数量(可修改) private Double FQty; }