using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PrincipalInfo Data Structure. /// [Serializable] public class PrincipalInfo : AopObject { /// /// 用户手机号 /// [XmlElement("mobile_no")] public string MobileNo { get; set; } /// /// 证件号 /// [XmlElement("operator_cert_no")] public string OperatorCertNo { get; set; } /// /// 证件类型,例如身份证,护照等 /// [XmlElement("operator_cert_type")] public string OperatorCertType { get; set; } /// /// 用户主体信息的扩展参数 /// [XmlElement("params")] public string Params { get; set; } /// /// 租户信息 /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } /// /// 业务方传入的用户标识 /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 用户名称 /// [XmlElement("user_name")] public string UserName { get; set; } } }