namespace Admin.NET.Plugin.AiDOP.Universal; public class UniversalWorkOrderPageInput { public int Page { get; set; } = 1; public int PageSize { get; set; } = 10; public string? WorkOrd { get; set; } public string? SortField { get; set; } public string? SortOrder { get; set; } } public class UniversalWorkOrderOutput { public int Id { get; set; } public string? Batch { get; set; } public string? Drawing { get; set; } public string? Typed { get; set; } public string? WorkOrd { get; set; } public DateTime? OrdDate { get; set; } public DateTime? DueDate { get; set; } public string? ItemNum { get; set; } public string? Project { get; set; } public decimal? QtyOrded { get; set; } public decimal? QtyCompleted { get; set; } public string? Remark { get; set; } public string? Status { get; set; } public string? WoTyped { get; set; } public string? Descr { get; set; } public string? Descr1 { get; set; } public decimal? Lbrvar { get; set; } }