using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAuthUserinfoApplyModel Data Structure. /// [Serializable] public class AlipayUserAuthUserinfoApplyModel : AopObject { /// /// 业务号 /// [XmlElement("biz_no")] public string BizNo { get; set; } /// /// 业务类型 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 扩展数据 /// [XmlElement("ext_data")] public string ExtData { get; set; } } }