Product_Wms/WcsMain/ApiServe/Dto/WcsDto/Config/GetConfigWithPageRequest.cs
icewint 03c600bc70 1、修改文件结构
2、删除不使用的 using
2024-11-15 11:38:01 +08:00

32 lines
622 B
C#

using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.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; }
}