WmsInArrivalResult.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.Model.AppModels.Condition.Instock
  7. {
  8. /// <summary>
  9. /// 到货通知单主表
  10. /// </summary>
  11. public class WmsInArrivalResult
  12. {
  13. public int ArrivalId { get; set; }
  14. public string Newid { get; set; }
  15. public string ArrivalNo { get; set; }
  16. public string SourceBillNo { get; set; }
  17. public int ArrivalType { get; set; }
  18. public string ArrivalTypeName { get; set; }
  19. public string PurchaseOrderNo { get; set; }
  20. public DateTime PurchaseTime { get; set; }
  21. public string PurchaseStaff { get; set; }
  22. public string WarehouseCode { get; set; }
  23. public string WarehouseName { get; set; }
  24. public int ArrivalStatus { get; set; }
  25. public string ArrivalStatusName { get; set; }
  26. public DateTime ExpectArrivalTime { get; set; }
  27. public DateTime ActualArrivalTime { get; set; }
  28. public string Describe { get; set; }
  29. public int CreateBy { get; set; }
  30. public string CreateName { get; set; }
  31. public DateTime CreateTime { get; set; }
  32. public int UpdateBy { get; set; }
  33. public string UpdateName { get; set; }
  34. public DateTime UpdateTime { get; set; }
  35. public int DataVersion { get; set; }
  36. public string Remarks1 { get; set; }
  37. public string Remarks2 { get; set; }
  38. public string Remarks3 { get; set; }
  39. public string Remarks4 { get; set; }
  40. public string Remarks5 { get; set; }
  41. public List<WmsInArrivalDtlResult> WmsInArrivalDtlList { get; set; }
  42. }
  43. }