using HH.WMS.Entitys.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Basic { /// /// 外购入库实体 /// public class K3_PurchaseReceiptEntity { public PurchaseReceipt_Data Data { get; set; } } public class PurchaseReceipt_Data { public List Page1 { get; set; } public List Page2 { get; set; } } public class PurchaseReceipt_Page1 { //编号 public string FBillNo { get; set; } //采购日期 public string Fdate { get; set; } //采购方式 public object FPOStyle { get; set; } //供应商 public object FSupplyID { get; set; } //采购模式 public object FPOMode { get; set; } //保管 public object FSManagerID { get; set; } //验收 public object FFManagerID { get; set; } //红蓝单标志 public int FROB { get; set; } //审核标志 public int FStatus { get; set; } //作废标志 public int FCancellation { get; set; } //public string FClassTypeID { get; set; } //public string FExplanation { get; set; } //public string FCussentAcctID { get; set; } //public object FBillerID { get; set; } //public string FDeptID { get; set; } //public string FEmpID { get; set; } //public object FPayCondition { get; set; } //public string FSettleDate { get; set; } //public string FEnterpriseID { get; set; } //public string FSendStatus { get; set; } //public string FOrgBillInterID { get; set; } //public object FRelateBrID { get; set; } //public string FPOOrdBillNo { get; set; } //public string FSelTranType { get; set; } //public string FSelBillNo { get; set; } //public object FCheckerID { get; set; } //public string FCheckDate { get; set; } //public string FPosterID { get; set; } //public object FBrID { get; set; } //public string FManageType { get; set; } //public string FVchInterID { get; set; } //public string FBrNo { get; set; } //public string FPrintCount { get; set; } //public object FBillReviewer { get; set; } //public string FBillReviewDate { get; set; } } public class PurchaseReceipt_Page2 { //单位 public object FUnitID { get; set; } //物料编码 public object FItemID { get; set; } //收料仓库 public object FDCStockID1 { get; set; } //检验是否良品 public object FChkPassItem { get; set; } //计划模式 public object FPlanMode { get; set; } // 实收数量 public string Fauxqty { get; set; } //基本单位实收数量 public string FQty { get; set; } //public string FMapNumber { get; set; } //public string FMapName { get; set; } //public string FKFPeriod { get; set; } //public string Fnote { get; set; } //public string FPurchasePrice { get; set; } //public string FPurchaseAmount { get; set; } //public string FBaseUnit { get; set; } //public string Fauxprice { get; set; } //public string FQtyMust { get; set; } //public string Famount { get; set; } //public object FAuxPropID { get; set; } //public string FModel { get; set; } //public string FBatchNo { get; set; } //public string FSecUnitID { get; set; } //public string FSecCoefficient { get; set; } //public string FKFDate { get; set; } //public string FSecQty { get; set; } //public string FAuxPlanPrice { get; set; } //public string FItemName { get; set; } //public string FPlanAmount { get; set; } //public string FAuxQtyMust { get; set; } //public string FPeriodDate { get; set; } //public string FSourceBillNo { get; set; } //public string FReviewBillsQty { get; set; } //public string FDiscountRate { get; set; } //public string FDiscountAmount { get; set; } //public object FDCSPID { get; set; } //public string FMTONo { get; set; } //public string FCheckAmount { get; set; } //public string FEntryID2 { get; set; } //public string FOutSourceEntryID { get; set; } //public string FOutSourceInterID { get; set; } //public string FOutSourceTranType { get; set; } //public string FBrNo2 { get; set; } //public string FOrgBillEntryID { get; set; } //public string FSNListID { get; set; } //public string FSourceTranType { get; set; } //public string FSourceInterId { get; set; } //public string FSourceEntryID { get; set; } //public string FContractBillNo { get; set; } //public string FContractInterID { get; set; } //public string FContractEntryID { get; set; } //public string FOrderBillNo { get; set; } //public string FOrderInterID { get; set; } //public string FOrderEntryID { get; set; } //public string FAllHookQTY { get; set; } //public string FAllHookAmount { get; set; } //public string FCurrentHookQTY { get; set; } //public string FCurrentHookAmount { get; set; } //public string FAuxQtyInvoice { get; set; } //public string FSecInvoiceQty { get; set; } //public string FQtyInvoice { get; set; } //public string FAuxPropCls { get; set; } //public string FDeliveryNoticeFID { get; set; } //public string FDeliveryNoticeEntryID { get; set; } //public string FTaxRate { get; set; } } }