Files
WMS-Api/src/WMS.Web.Core/Dto/LingXing/LingXingRequest.cs
18942506660 f85e04fe97 增加配置
2024-10-16 17:47:34 +08:00

25 lines
527 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.LingXing
{
/// <summary>
/// 领星请求
/// </summary>
public class LingXingRequest
{
/// <summary>
/// 页码
/// </summary>
[JsonProperty("offset")]
public int offset { get; set; } = 1;
/// <summary>
/// 页条数
/// </summary>
[JsonProperty("ength")]
public int ength { get; set; } = 1000;
}
}