namespace Admin.NET.Plugin.AiDOP.Supply; public class DeliveryScheduleListInput { public int Page { get; set; } = 1; public int PageSize { get; set; } = 10; public string? PoNumber { get; set; } public string? DsNum { get; set; } public string? ItemNum { get; set; } public string? Supplier { get; set; } public string? Status { get; set; } public string? SortField { get; set; } public string? SortOrder { get; set; } } public class DeliveryScheduleBatchIdsInput { public string Ids { get; set; } = string.Empty; } public class DeliveryScheduleGenerateInput { public string PoNumber { get; set; } = string.Empty; } public class PurchaseOrderSelectInput { public int Page { get; set; } = 1; public int PageSize { get; set; } = 10; public string? PurOrd { get; set; } public string? ItemNum { get; set; } public string? Supp { get; set; } public string? SortField { get; set; } public string? SortOrder { get; set; } }