WmsInArrivalDtlResult.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. public class WmsInArrivalDtlResult
  9. {
  10. public int ArrivalDtlId { get; set; }
  11. public string Newid { get; set; }
  12. public int ArrivalId { get; set; }
  13. public string ArrivalNo { get; set; }
  14. public string MaterielTypeCode { get; set; }
  15. public string MaterielTypeName { get; set; }
  16. public string MaterielCode { get; set; }
  17. public string MaterielName { get; set; }
  18. public string MaterielBarcode { get; set; }
  19. public string MaterielSpec { get; set; }
  20. public string UnitCode { get; set; }
  21. public string BatchNo { get; set; }
  22. public string PackageCode { get; set; }
  23. public decimal ArrivalQty { get; set; }
  24. public decimal ReceiptQty { get; set; }
  25. public string SupplierCode { get; set; }
  26. public string SupplierName { get; set; }
  27. public DateTime ProductDate { get; set; }
  28. public DateTime ExpDate { get; set; }
  29. public int ArrivalDtlStatus { get; set; }
  30. public string ArrivalDtlStatusName { get; set; }
  31. public string InspectionResult { get; set; }
  32. public string InspectionResultName { get; set; }
  33. public int ItemStatus { get; set; }
  34. public string ItemStatusName { get; set; }
  35. public int SourceBillDtlIdx { get; set; }
  36. public int PurchaseOrderDtlIdx { get; set; }
  37. public int PurchaseOrderDtlStatus { get; set; }
  38. public string Describe { get; set; }
  39. public int CreateBy { get; set; }
  40. public string CreateName { get; set; }
  41. public DateTime CreateTime { get; set; }
  42. public int UpdateBy { get; set; }
  43. public string UpdateName { get; set; }
  44. public DateTime UpdateTime { get; set; }
  45. public int DataVersion { get; set; }
  46. public string Remarks1 { get; set; }
  47. public string Remarks2 { get; set; }
  48. public string Remarks3 { get; set; }
  49. public string Remarks4 { get; set; }
  50. public string Remarks5 { get; set; }
  51. }
  52. }