| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- namespace Admin.NET.Plugin.AiDOP.Supply;
- public class WorkOrderMaterialReadinessListInput
- {
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 10;
- public string? SeOrder { get; set; }
- public string? Workord { get; set; }
- public string? BomNumber { get; set; }
- public string? ItemNum { get; set; }
- public string? SupplierName { get; set; }
- public string? SortField { get; set; }
- public string? SortOrder { get; set; }
- }
- public class WorkOrderMaterialReadinessRow
- {
- public string? RowNum { get; set; }
- public string? SeOrder { get; set; }
- public decimal? SePriority { get; set; }
- public string? Workord { get; set; }
- public decimal? Priority { get; set; }
- public string? MorderType { get; set; }
- public string? LotSerial { get; set; }
- public string? Op { get; set; }
- public DateTime? OpOrdDate { get; set; }
- public string? BomNumber { get; set; }
- public string? Descr { get; set; }
- public string? Descr1 { get; set; }
- public decimal? ProductionNumber { get; set; }
- public DateTime? Checktime { get; set; }
- public string? PMBOM { get; set; }
- public string? ItemType { get; set; }
- public string? OwnerApplication { get; set; }
- public string? ItemNum { get; set; }
- public string? ComponentItemDescr { get; set; }
- public string? ComponentItemDrawing { get; set; }
- public decimal? QtyRequired { get; set; }
- public string? ComponentItemUM { get; set; }
- public DateTime? ComponentItemKittingTime { get; set; }
- public decimal? QtyRec { get; set; }
- public DateTime? RecDate { get; set; }
- public decimal? Shortage { get; set; }
- public decimal? QtyFrom { get; set; }
- public DateTime? FromDate { get; set; }
- public decimal? Zjsl { get; set; }
- public DateTime? Jykssj { get; set; }
- public decimal? Ztsl { get; set; }
- public DateTime? Jhshrq { get; set; }
- public decimal? Jqsl { get; set; }
- public DateTime? Hfjq { get; set; }
- public decimal? PurOrdQty { get; set; }
- public DateTime? PurOrdorddate { get; set; }
- public string? PurOrds { get; set; }
- public DateTime? ContractDate { get; set; }
- public string? ContractNO { get; set; }
- public string? SupplierNumber { get; set; }
- public string? SupplierName { get; set; }
- public string? Buyer { get; set; }
- public string? BuyerUser { get; set; }
- }
|