NewGaoKaoApi/PaymentSDK/AliPay/Domain/IdentityParams.cs

37 lines
929 B
C#
Raw 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>
/// IdentityParams Data Structure.
/// </summary>
[Serializable]
public class IdentityParams : AopObject
{
/// <summary>
/// 用户身份证号
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 用户实名信息hash值
/// </summary>
[XmlElement("identity_hash")]
public string IdentityHash { get; set; }
/// <summary>
/// 签约指定用户的uid如用户登录的uid和指定的用户uid不一致则报错
/// </summary>
[XmlElement("sign_user_id")]
public string SignUserId { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[XmlElement("user_name")]
public string UserName { get; set; }
}
}