using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.Instock { /// /// 到货通知单主表 /// public class WmsInArrivalResult { public int ArrivalId { get; set; } public string Newid { get; set; } public string ArrivalNo { get; set; } public string SourceBillNo { get; set; } public int ArrivalType { get; set; } public string ArrivalTypeName { get; set; } public string PurchaseOrderNo { get; set; } public DateTime PurchaseTime { get; set; } public string PurchaseStaff { get; set; } public string WarehouseCode { get; set; } public string WarehouseName { get; set; } public int ArrivalStatus { get; set; } public string ArrivalStatusName { get; set; } public DateTime ExpectArrivalTime { get; set; } public DateTime ActualArrivalTime { 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; } public List WmsInArrivalDtlList { get; set; } } }