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.
15 lines
372 B
15 lines
372 B
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class JDQueryWareHouseRequest : PlatformRequest
|
|
{
|
|
/// <summary>
|
|
/// 开放平台事业部编号
|
|
/// </summary>
|
|
public string deptNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库编号, 逗号间隔
|
|
/// </summary>
|
|
public string wareHouseNos { get; set; }
|
|
}
|
|
}
|
|
|