using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySocialGiftOrderQueryModel Data Structure.
///
[Serializable]
public class AlipaySocialGiftOrderQueryModel : AopObject
{
///
/// 商户再送礼平台的唯一ID,用于标识具体的调用业务方,需要先在送礼平台进行业务类型的分配之后才看使用。
///
[XmlElement("mid")]
public string Mid { get; set; }
///
/// 对应送礼平台的主订单ID,可根据此进行订单查询
///
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}