namespace Admin.NET.Plugin.AiDOP.Supply; public class PurchaseRequestListInput { public int Page { get; set; } = 1; public int PageSize { get; set; } = 10; public string? PrBillNo { get; set; } public string? ItemNumber { get; set; } public string? SupplierName { get; set; } public int? State { get; set; } public string? SortField { get; set; } public string? SortOrder { get; set; } } public class PurchaseRequestSaveInput { public long? Id { get; set; } public string? PrBillNo { get; set; } public long? IcitemId { get; set; } public string? IcitemName { get; set; } public string? PrUnit { get; set; } public string? PrPurchaseNumber { get; set; } public string? PrPurchaseName { get; set; } public string? SupplierType { get; set; } public decimal? PrAqty { get; set; } public string? PrSsendDate { get; set; } public string? PrSarriveDate { get; set; } public int? PrType { get; set; } public int? State { get; set; } public long? PrPurchaseId { get; set; } public int? IsRequireGoods { get; set; } public string? PrPurchaserNum { get; set; } public string? PrPurchaser { get; set; } public long? CurrencyType { get; set; } }