27 lines
714 B
C#
27 lines
714 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingVoucherStockMatchModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayMarketingVoucherStockMatchModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 待核查券码列表,商户体系内可兑换使用的券码
|
|
/// </summary>
|
|
[XmlArray("entity_list")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> EntityList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库存ID,创建库存时返回
|
|
/// </summary>
|
|
[XmlElement("stock_id")]
|
|
public string StockId { get; set; }
|
|
}
|
|
}
|