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

54 lines
1.1 KiB
C#

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