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