using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AntMerchantExpandItemSecurityBatchqueryModel Data Structure.
///
[Serializable]
public class AntMerchantExpandItemSecurityBatchqueryModel : AopObject
{
///
/// 商品ID列表
///
[XmlArray("item_id_list")]
[XmlArrayItem("string")]
public List ItemIdList { get; set; }
}
}