NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppFlowStatusQueryMo...

43 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppFlowStatusQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppFlowStatusQueryModel : AopObject
{
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("ext_msg")]
public string ExtMsg { get; set; }
/// <summary>
/// 内部订单号
/// </summary>
[XmlElement("merchant_order_id")]
public string MerchantOrderId { get; set; }
/// <summary>
/// 手机号码15158886666
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 外部交易号
/// </summary>
[XmlElement("trade_id")]
public string TradeId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}