using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Location;
///
/// GetLocationWithPage 接口请求类
///
public class GetLocationWithPageRequest
{
///
/// 查询的字符串
///
[JsonPropertyName("searchStr")]
public string? SearchStr { get; set; }
///
/// 点位状态
///
[JsonPropertyName("locationStatus")]
public List? LocationStatus { get; set; }
///
/// 点位类型
///
[JsonPropertyName("locationType")]
public List? LocationType { get; set; }
///
/// 分页信息
///
[JsonPropertyName("page")]
public LocationPage? Page { get; set; }
}
public class LocationPage
{
///
/// 每页大小
///
[JsonPropertyName("pageSize")]
public int PageSize { get; set; }
///
/// 当前页数
///
[JsonPropertyName("pageIndex")]
public int PageIndex { get; set; }
}