using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.Instock { public class WmsInArrivalDtlResult { public int ArrivalDtlId { get; set; } public string Newid { get; set; } public int ArrivalId { get; set; } public string ArrivalNo { get; set; } public string MaterielTypeCode { get; set; } public string MaterielTypeName { get; set; } public string MaterielCode { get; set; } public string MaterielName { get; set; } public string MaterielBarcode { get; set; } public string MaterielSpec { get; set; } public string UnitCode { get; set; } public string BatchNo { get; set; } public string PackageCode { get; set; } public decimal ArrivalQty { get; set; } public decimal ReceiptQty { get; set; } public string SupplierCode { get; set; } public string SupplierName { get; set; } public DateTime ProductDate { get; set; } public DateTime ExpDate { get; set; } public int ArrivalDtlStatus { get; set; } public string ArrivalDtlStatusName { get; set; } public string InspectionResult { get; set; } public string InspectionResultName { get; set; } public int ItemStatus { get; set; } public string ItemStatusName { get; set; } public int SourceBillDtlIdx { get; set; } public int PurchaseOrderDtlIdx { get; set; } public int PurchaseOrderDtlStatus { get; set; } public string Describe { get; set; } public int CreateBy { get; set; } public string CreateName { get; set; } public DateTime CreateTime { get; set; } public int UpdateBy { get; set; } public string UpdateName { get; set; } public DateTime UpdateTime { get; set; } public int DataVersion { get; set; } public string Remarks1 { get; set; } public string Remarks2 { get; set; } public string Remarks3 { get; set; } public string Remarks4 { get; set; } public string Remarks5 { get; set; } } }