2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.WcsDto.Location;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GetLocationWithPage 接口请求类
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class GetLocationWithPageRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询的字符串
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("searchStr")]
|
|
|
|
|
|
public string? SearchStr { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 点位状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("locationStatus")]
|
|
|
|
|
|
public List<int>? LocationStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 点位类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("locationType")]
|
|
|
|
|
|
public List<int>? LocationType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分页信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("page")]
|
|
|
|
|
|
public LocationPage? Page { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class LocationPage
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 每页大小
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("pageSize")]
|
|
|
|
|
|
public int PageSize { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 当前页数
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("pageIndex")]
|
|
|
|
|
|
public int PageIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|