using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppFlowModeQueryModel Data Structure. /// [Serializable] public class AlipayEbppFlowModeQueryModel : AopObject { /// /// json扩展字段 /// [XmlElement("ext_msg")] public string ExtMsg { get; set; } /// /// 手机号码 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }