25 lines
527 B
C#
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;
|
|
}
|
|
}
|