You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
824 B
27 lines
824 B
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
|
|
{
|
|
/// <summary>
|
|
/// 京东事业部编码
|
|
/// </summary>
|
|
public string DeptNo { get; set; }
|
|
/// <summary>
|
|
/// 仓库编号
|
|
/// </summary>
|
|
public string WareHouseNo { get; set; }
|
|
/// <summary>
|
|
/// 仓库状态类型(可销售=1, 采购在途 = 23,在途库存=8) 默认查全部
|
|
/// </summary>
|
|
public StockState? StockType { get; set; }
|
|
/// <summary>
|
|
/// 当前页码 (100条1页 从1开始) (默认第1页)
|
|
/// </summary>
|
|
public int? CurrentPage { get; set; }
|
|
}
|
|
}
|
|
|