using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Principal Data Structure. /// [Serializable] public class Principal : AopObject { /// /// 用户身份证号。 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// 证件类型 'IDENTIFY' //个人认证-身份证类型 'BRNUMBER' //工商注册号 'USCC' //统一社会信用代码 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 签约主体类型 individual //个人/操作员 entreprise //企业 /// [XmlElement("signer_type")] public string SignerType { get; set; } /// /// 签约主体名称 个人认证时例如:'张三' 企业认证时例如:'XX公司' /// [XmlElement("user_name")] public string UserName { get; set; } /// /// 是否需要认证 'NEED' //需要认证 'NONEED' //不需要认证 /// [XmlElement("verify_type")] public string VerifyType { get; set; } } }