using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAuthZhimaorgIdentityApplyModel Data Structure. /// [Serializable] public class AlipayUserAuthZhimaorgIdentityApplyModel : AopObject { /// /// 营业执照号码 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// NATIONAL_LEGAL:营业执照号码 NATIONAL_LEGAL_MERGE:三证合一号码 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 企业名称 /// [XmlElement("name")] public string Name { get; set; } } }