WorkOrderMaterialReadinessDto.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. namespace Admin.NET.Plugin.AiDOP.Supply;
  2. public class WorkOrderMaterialReadinessListInput
  3. {
  4. public int Page { get; set; } = 1;
  5. public int PageSize { get; set; } = 10;
  6. public string? SeOrder { get; set; }
  7. public string? Workord { get; set; }
  8. public string? BomNumber { get; set; }
  9. public string? ItemNum { get; set; }
  10. public string? SupplierName { get; set; }
  11. public string? SortField { get; set; }
  12. public string? SortOrder { get; set; }
  13. }
  14. public class WorkOrderMaterialReadinessRow
  15. {
  16. public string? RowNum { get; set; }
  17. public string? SeOrder { get; set; }
  18. public decimal? SePriority { get; set; }
  19. public string? Workord { get; set; }
  20. public decimal? Priority { get; set; }
  21. public string? MorderType { get; set; }
  22. public string? LotSerial { get; set; }
  23. public string? Op { get; set; }
  24. public DateTime? OpOrdDate { get; set; }
  25. public string? BomNumber { get; set; }
  26. public string? Descr { get; set; }
  27. public string? Descr1 { get; set; }
  28. public decimal? ProductionNumber { get; set; }
  29. public DateTime? Checktime { get; set; }
  30. public string? PMBOM { get; set; }
  31. public string? ItemType { get; set; }
  32. public string? OwnerApplication { get; set; }
  33. public string? ItemNum { get; set; }
  34. public string? ComponentItemDescr { get; set; }
  35. public string? ComponentItemDrawing { get; set; }
  36. public decimal? QtyRequired { get; set; }
  37. public string? ComponentItemUM { get; set; }
  38. public DateTime? ComponentItemKittingTime { get; set; }
  39. public decimal? QtyRec { get; set; }
  40. public DateTime? RecDate { get; set; }
  41. public decimal? Shortage { get; set; }
  42. public decimal? QtyFrom { get; set; }
  43. public DateTime? FromDate { get; set; }
  44. public decimal? Zjsl { get; set; }
  45. public DateTime? Jykssj { get; set; }
  46. public decimal? Ztsl { get; set; }
  47. public DateTime? Jhshrq { get; set; }
  48. public decimal? Jqsl { get; set; }
  49. public DateTime? Hfjq { get; set; }
  50. public decimal? PurOrdQty { get; set; }
  51. public DateTime? PurOrdorddate { get; set; }
  52. public string? PurOrds { get; set; }
  53. public DateTime? ContractDate { get; set; }
  54. public string? ContractNO { get; set; }
  55. public string? SupplierNumber { get; set; }
  56. public string? SupplierName { get; set; }
  57. public string? Buyer { get; set; }
  58. public string? BuyerUser { get; set; }
  59. }