45 lines
989 B
C#
45 lines
989 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Dto.WcsDto.User;
|
|
|
|
public class GetUserWithPageRequest
|
|
{
|
|
/// <summary>
|
|
/// 查询的字符串
|
|
/// </summary>
|
|
[JsonPropertyName("searchStr")]
|
|
public string? SearchStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户状态
|
|
/// </summary>
|
|
[JsonPropertyName("userStatus")]
|
|
public List<string>? UserStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 查询时间范围
|
|
/// </summary>
|
|
[JsonPropertyName("timeRange")]
|
|
public List<DateTime>? TimeRange { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分页信息
|
|
/// </summary>
|
|
[JsonPropertyName("page")]
|
|
public UserPage? Page { get; set; }
|
|
}
|
|
|
|
public class UserPage
|
|
{
|
|
/// <summary>
|
|
/// 每页大小
|
|
/// </summary>
|
|
[JsonPropertyName("pageSize")]
|
|
public int PageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页数
|
|
/// </summary>
|
|
[JsonPropertyName("pageIndex")]
|
|
public int PageIndex { get; set; }
|
|
} |