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