21 lines
520 B
C#
21 lines
520 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiRetailWmsGoodsBatchqueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiRetailWmsGoodsBatchqueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 货品编码,限制批量查询100个
|
||
/// </summary>
|
||
[XmlArray("goods_codes")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> GoodsCodes { get; set; }
|
||
}
|
||
}
|