增加配置
This commit is contained in:
24
src/WMS.Web.Core/Dto/LingXing/LingXingRequest.cs
Normal file
24
src/WMS.Web.Core/Dto/LingXing/LingXingRequest.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user