using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.JuShuiTan
{
public class JuShuiTanInventoryRequst
{
///
/// 页码
///
[JsonProperty("page_index")]
public int page_index { get; set; } = 1;
///
/// 页条数
///
[JsonProperty("page_size")]
public int page_size { get; set; } = 30;
///
/// 仓库Id
///
[JsonProperty("wms_co_id")]
public int wms_co_id { get; set; }
///
/// 开始时间
///
[JsonProperty("modified_begin")]
public string modified_begin { get; set; }
///
/// 结算时间
///
[JsonProperty("modified_end")]
public string modified_end { get; set; }
}
}