37 lines
996 B
C#
37 lines
996 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandBenefitConfirmModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AntMerchantExpandBenefitConfirmModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 业务扩展信息
|
|
/// </summary>
|
|
[XmlElement("biz_ext")]
|
|
public string BizExt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户跳转到外部页面1688系统发起的·确认发奖的外部业务时间
|
|
/// </summary>
|
|
[XmlElement("out_biz_time")]
|
|
public string OutBizTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户跳转外部1688页面时URL 带的 发放记录·ID
|
|
/// </summary>
|
|
[XmlElement("record_id")]
|
|
public string RecordId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 蚂蚁统一会员ID
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|