Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/BusinessLicenceInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

84 lines
2.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// BusinessLicenceInfo Data Structure.
/// </summary>
[Serializable]
public class BusinessLicenceInfo : AopObject
{
/// <summary>
/// 营业执照授权函图片,个体工商户如果使用总公司或其他公司的营业执照认证需上传该授权函图片
/// </summary>
[JsonProperty("business_license_auth_pic")]
public string BusinessLicenseAuthPic { get; set; }
/// <summary>
/// 营业执照所在城市使用国家行政区划代码可参考http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/
/// </summary>
[JsonProperty("business_license_city")]
public string BusinessLicenseCity { get; set; }
/// <summary>
/// 营业执照有效期传入营业执照上营业期限到期日格式为YYYY-MM-DD如为长期则传入9999-12-31
/// </summary>
[JsonProperty("business_license_indate")]
public string BusinessLicenseIndate { get; set; }
/// <summary>
/// 营业执照是否为三证合一个体工商户可忽略该字段企业级商户的营业执照如为三证合一的新营业执照则传true
/// </summary>
[JsonProperty("business_license_is_three_in_one")]
public bool BusinessLicenseIsThreeInOne { get; set; }
/// <summary>
/// 营业执照号码
/// </summary>
[JsonProperty("business_license_no")]
public string BusinessLicenseNo { get; set; }
/// <summary>
/// 营业执照图片
/// </summary>
[JsonProperty("business_license_pic")]
public string BusinessLicensePic { get; set; }
/// <summary>
/// 营业执照所在地省份使用国家行政区划代码可参考http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/
/// </summary>
[JsonProperty("business_license_province")]
public string BusinessLicenseProvince { get; set; }
/// <summary>
/// 营业执照上的企业经营范围
/// </summary>
[JsonProperty("business_scope")]
public string BusinessScope { get; set; }
/// <summary>
/// 营业执照上的企业联系地址
/// </summary>
[JsonProperty("company_address")]
public string CompanyAddress { get; set; }
/// <summary>
/// 营业执照上的企业名称
/// </summary>
[JsonProperty("company_name")]
public string CompanyName { get; set; }
/// <summary>
/// 组织机构代码证号码,个体工商户忽略该字段,企业级商户如营业执照非三证合一需要传入该字段否则预校验会不通过
/// </summary>
[JsonProperty("org_code_certificate_no")]
public string OrgCodeCertificateNo { get; set; }
/// <summary>
/// 组织机构代码证图片,个体工商户忽略该字段,企业级商户如营业执照非三证合一需要传入该字段否则预校验会不通过
/// </summary>
[JsonProperty("org_code_certificate_pic")]
public string OrgCodeCertificatePic { get; set; }
}
}