using System; using System.Collections.Generic; using System.Text; using static BBWY.Server.Model.Enums; namespace BBWY.Server.Model.Dto.Request.JD { public class GetStockNumByWareHouseNoRequest : PlatformRequest { /// /// 京东事业部编码 /// public string DeptNo { get; set; } /// /// 仓库编号 /// public string WareHouseNo { get; set; } /// /// 仓库状态类型(可销售=1, 采购在途 = 23,在途库存=8) 默认查全部 /// public StockState? StockType { get; set; } /// /// 当前页码 (100条1页 从1开始) (默认第1页) /// public int? CurrentPage { get; set; } } }