| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace Admin.NET.Plugin.AiDOP.Supply;
- public class DemandOrderListInput
- {
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 10;
- public string? PurOrd { get; set; }
- public string? Buyer { get; set; }
- public string? Supp { get; set; }
- public string? Status { get; set; }
- public string? SortField { get; set; }
- public string? SortOrder { get; set; }
- }
- public class DemandOrderSaveInput
- {
- public int? Id { get; set; }
- public string? PurOrd { get; set; }
- public string? OrdDate { get; set; }
- public string? Supp { get; set; }
- public string? ReqBy { get; set; }
- public string? Buyer { get; set; }
- public string? Department { get; set; }
- public string? Curr { get; set; }
- public string? Usage { get; set; }
- public string? Remark { get; set; }
- public string? Potype { get; set; }
- public string? Fstid { get; set; }
- public List<DemandOrderDetailInput> Details { get; set; } = new();
- }
- public class DemandOrderDetailInput
- {
- public int? Id { get; set; }
- public int? Line { get; set; }
- public string? ItemNum { get; set; }
- public string? UM { get; set; }
- public string? Location { get; set; }
- public decimal? QtyOrded { get; set; }
- public decimal? RctQty { get; set; }
- public decimal? ReceiptQty { get; set; }
- public string? DueDate { get; set; }
- public string? Rev { get; set; }
- public string? Drawing { get; set; }
- public string? LotSerial { get; set; }
- public string? Potype { get; set; }
- public string? PurOrd { get; set; }
- public int? PurOrdRecID { get; set; }
- }
- public class DemandOrderItemListInput
- {
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 10;
- public string? ItemNum { get; set; }
- public string? Descr { get; set; }
- public string? SortField { get; set; }
- public string? SortOrder { get; set; }
- }
|