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