using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiRetailWmsSupplierQueryModel Data Structure.
///
[Serializable]
public class KoubeiRetailWmsSupplierQueryModel : AopObject
{
///
/// 操作上下文
///
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
///
/// 供应商ID,限制批量查询100个ID
///
[XmlArray("supplier_ids")]
[XmlArrayItem("string")]
public List SupplierIds { get; set; }
}
}