49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayFinancialnetAuthEcsignErrorQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayFinancialnetAuthEcsignErrorQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 证件号
|
|
/// </summary>
|
|
[XmlElement("cert_no")]
|
|
public string CertNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 登录ID
|
|
/// </summary>
|
|
[XmlElement("logon_id")]
|
|
public string LogonId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
[XmlElement("mobile")]
|
|
public string Mobile { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部平台订单号
|
|
/// </summary>
|
|
[XmlElement("out_order_no")]
|
|
public string OutOrderNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合作伙伴ID
|
|
/// </summary>
|
|
[XmlElement("partner_id")]
|
|
public string PartnerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 签约产品码
|
|
/// </summary>
|
|
[XmlElement("sign_product_id")]
|
|
public string SignProductId { get; set; }
|
|
}
|
|
}
|