using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// IdentityParams Data Structure.
///
[Serializable]
public class IdentityParams : AopObject
{
///
/// 用户身份证号
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 用户实名信息hash值
///
[XmlElement("identity_hash")]
public string IdentityHash { get; set; }
///
/// 签约指定用户的uid,如用户登录的uid和指定的用户uid不一致则报错
///
[XmlElement("sign_user_id")]
public string SignUserId { get; set; }
///
/// 用户姓名
///
[XmlElement("user_name")]
public string UserName { get; set; }
}
}