package com.zy.common.service.erp.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableName; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * 出库表体 * Created by vincent on 2020/11/27 */ @Data @TableName("OutStockBillEntry") public class OutStockBillEntry { /* 订单状态,出库中或已出库 */ @TableField(exist = false) private Integer workRecord; /*单据编号-OutStockBill表数据 */ @TableField(exist = false) private String FBillNo; /*地址-OutStockBill表数据*/ @TableField(exist = false) private String FAdd; @TableField("FBrNo") private String FBrNo; /*通知单内码*/ @TableField("FInterID") private Integer FInterID; /*分录号*/ @TableField("FEntryID") private Integer FEntryID; /*产品代码内码*/ @TableField("FItemID") private Integer FItemID; /*基本单位数量*/ @TableField("FQty") private BigDecimal FQty; /*发货数量*/ @TableField("FCommitQty") private BigDecimal FCommitQty; /*单价*/ @TableField("FPrice") private BigDecimal FPrice; /*金额*/ @TableField("FAmount") private BigDecimal FAmount; /*销售订单单号*/ @TableField("FOrderInterID") private Integer FOrderInterID; /*日期*/ @TableField("FDate") private Date FDate; /*备注*/ @TableField("FNote") private String FNote; /*开票数量*/ @TableField("FInvoiceQty") private BigDecimal FInvoiceQty; /*退货数量*/ @TableField("FBCommitQty") private BigDecimal FBCommitQty; /*计量单位*/ @TableField("FUnitID") private Integer FUnitID; /*辅助退货数量*/ @TableField("FAuxBCommitQty") private BigDecimal FAuxBCommitQty; /*辅助发货数量*/ @TableField("FAuxCommitQty") private BigDecimal FAuxCommitQty; /*辅助开票数量*/ @TableField("FAuxInvoiceQty") private BigDecimal FAuxInvoiceQty; /*单价*/ @TableField("FAuxPrice") private BigDecimal FAuxPrice; /*数量*/ @TableField("FAuxQty") private BigDecimal FAuxQty; /*源单行号*/ @TableField("FSourceEntryID") private Integer FSourceEntryID; /*对应代码*/ @TableField("FMapNumber") private String FMapNumber; /*对应名称*/ @TableField("FMapName") private String FMapName; @TableField("FAuxPropID") private Integer FAuxPropID; @TableField("FBatchNo") private String FBatchNo; @TableField("FCheckDate") private Date FCheckDate; @TableField("FExplanation") private String FExplanation; @TableField("FFetchAdd") private String FFetchAdd; @TableField("FFetchDate") private Date FFetchDate; @TableField("FMultiCheckDate1") private Date FMultiCheckDate1; @TableField("FMultiCheckDate2") private Date FMultiCheckDate2; @TableField("FMultiCheckDate3") private Date FMultiCheckDate3; @TableField("FMultiCheckDate4") private Date FMultiCheckDate4; @TableField("FMultiCheckDate5") private Date FMultiCheckDate5; @TableField("FMultiCheckDate6") private Date FMultiCheckDate6; @TableField("FSecCoefficient") private BigDecimal FSecCoefficient; @TableField("FSecQty") private BigDecimal FSecQty; @TableField("FSecCommitQty") private BigDecimal FSecCommitQty; @TableField("FSourceTranType") private Integer FSourceTranType; @TableField("FSourceInterId") private Integer FSourceInterId; /*生产单号*/ @TableField("FSourceBillNo") private String FSourceBillNo; @TableField("FContractInterID") private Integer FContractInterID; @TableField("FContractEntryID") private Integer FContractEntryID; @TableField("FContractBillNo") private String FContractBillNo; @TableField("FOrderEntryID") private Integer FOrderEntryID; @TableField("FOrderBillNo") private String FOrderBillNo; @TableField("FStockID") private Integer FStockID; @TableField("FBackQty") private BigDecimal FBackQty; @TableField("FAuxBackQty") private BigDecimal FAuxBackQty; @TableField("FSecBackQty") private BigDecimal FSecBackQty; @TableField("FStdAmount") private BigDecimal FStdAmount; @TableField("FPlanMode") private Integer FPlanMode; @TableField("FMTONo") private String FMTONo; @TableField("FDetailID") private Integer FDetailID; @TableField("FStockQtyOnlyForShow") private BigDecimal FStockQtyOnlyForShow; @TableField("FComplexQty") private String FComplexQty; @TableField("Fmodel") private String Fmodel; @TableField("Fname") private String Fname; /*物料编码(产品代码)*/ @TableField("Fnumber") private String Fnumber; @TableField("FBarCode") private String FBarCode; @TableField("FBTPLCommitQty") private BigDecimal FBTPLCommitQty; @TableField("FTPLCommitQty") private BigDecimal FTPLCommitQty; @TableField("fsecinvoiceqty") private BigDecimal fsecinvoiceqty; }