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