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