Product_Wms/WcsMain/ApiServe/Dto/WcsDto/SystemController/GetSysMsgWithPageRequest.cs

25 lines
547 B
C#
Raw Normal View History

2024-10-07 09:51:55 +08:00
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.WcsDto.SystemController;
2024-10-07 09:51:55 +08:00
public class GetSysMsgWithPageRequest
{
/// <summary>
/// 查询字符串
/// </summary>
[JsonPropertyName("searchStr")]
public string? SearchStr { get; set; }
/// <summary>
/// 每页大小
/// </summary>
[JsonPropertyName("pageSize")]
public int PageSize { get; set; }
/// <summary>
/// 当前页数
/// </summary>
[JsonPropertyName("pageIndex")]
public int PageIndex { get; set; }
}