21 lines
507 B
C#
21 lines
507 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiRetailWmsProducerBatchqueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiRetailWmsProducerBatchqueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 最多查询100个
|
|
/// </summary>
|
|
[XmlArray("producer_ids")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> ProducerIds { get; set; }
|
|
}
|
|
}
|