using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserMpointAuthbasePayModel Data Structure. /// [Serializable] public class AlipayUserMpointAuthbasePayModel : AopObject { /// /// 业务子类型,由会员方面分配 /// [XmlElement("biz_sub_type")] public string BizSubType { get; set; } /// /// 业务类型,由会员方面分配 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 外部业务号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 目标扣减积分数 /// [XmlElement("point")] public string Point { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }