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