31 lines
759 B
C#
31 lines
759 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayFinancialnetAuthSpaccountConsultModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayFinancialnetAuthSpaccountConsultModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 业务标识ID
|
|
/// </summary>
|
|
[XmlElement("biz_identity")]
|
|
public string BizIdentity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 签约产品ID
|
|
/// </summary>
|
|
[XmlElement("sign_product_id")]
|
|
public string SignProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 蚂蚁统一会员ID
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|