wcs_serve_wuxikate/WcsMain/ApiServe/Controllers/Dto/WcsDto/Config/GetConfigWithPageRequest.cs
2025-01-03 14:36:27 +08:00

32 lines
635 B
C#

using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Config;
/// <summary>
/// 分页请求获取配置项的请求参数
/// </summary>
public class GetConfigWithPageRequest
{
/// <summary>
/// 查询字符串
/// </summary>
[JsonPropertyName("searchStr")]
public string? SearchString { get; set; }
/// <summary>
/// 页面大小
/// </summary>
[JsonPropertyName("pageSize")]
public int? PageSize { get; set; }
/// <summary>
/// 页面页码
/// </summary>
[JsonPropertyName("pageIndex")]
public int? PageIndex { get; set; }
}