聚水潭接口对接
This commit is contained in:
36
src/WMS.Web.Core/Dto/JuShuiTan/JuShuiTanInventoryRequst.cs
Normal file
36
src/WMS.Web.Core/Dto/JuShuiTan/JuShuiTanInventoryRequst.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.JuShuiTan
|
||||
{
|
||||
public class JuShuiTanInventoryRequst
|
||||
{
|
||||
/// <summary>
|
||||
/// 页码
|
||||
/// </summary>
|
||||
[JsonProperty("page_index")]
|
||||
public int page_index { get; set; } = 1;
|
||||
/// <summary>
|
||||
/// 页条数
|
||||
/// </summary>
|
||||
[JsonProperty("page_size")]
|
||||
public int page_size { get; set; } = 30;
|
||||
/// <summary>
|
||||
/// 仓库Id
|
||||
/// </summary>
|
||||
[JsonProperty("wms_co_id")]
|
||||
public int wms_co_id { get; set; }
|
||||
/// <summary>
|
||||
/// 开始时间
|
||||
/// </summary>
|
||||
[JsonProperty("modified_begin")]
|
||||
public string modified_begin { get; set; }
|
||||
/// <summary>
|
||||
/// 结算时间
|
||||
/// </summary>
|
||||
[JsonProperty("modified_end")]
|
||||
public string modified_end { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user