using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayBossProdSubmerchantCreateModel Data Structure. /// [Serializable] public class AlipayBossProdSubmerchantCreateModel : AopObject { /// /// 受理商户详细经营地址 /// [JsonProperty("address")] public string Address { get; set; } /// /// 受理商户简称 /// [JsonProperty("alias_name")] public string AliasName { get; set; } /// /// 受理商户营业执照编号 /// [JsonProperty("business_license")] public string BusinessLicense { get; set; } /// /// 受理商户经营类目,参考开放平台口碑开放行业入驻要求 /// [JsonProperty("category_id")] public string CategoryId { get; set; } /// /// 受理商户所在城市编码 /// [JsonProperty("city_code")] public string CityCode { get; set; } /// /// 受理商户联系人邮箱 /// [JsonProperty("contact_email")] public string ContactEmail { get; set; } /// /// 受理商户联系人手机号 /// [JsonProperty("contact_mobile")] public string ContactMobile { get; set; } /// /// 受理商户联系人名称 /// [JsonProperty("contact_name")] public string ContactName { get; set; } /// /// 受理商户联系人电话 /// [JsonProperty("contact_phone")] public string ContactPhone { get; set; } /// /// 受理商户所在区县编码 /// [JsonProperty("district_code")] public string DistrictCode { get; set; } /// /// 受理商户编号,由受理机构定义,需要保证在受理机构下唯一 /// [JsonProperty("external_id")] public string ExternalId { get; set; } /// /// 受理商户身份证编号 /// [JsonProperty("id_card")] public string IdCard { get; set; } /// /// 受理商户备注信息,可填写额外信息 /// [JsonProperty("memo")] public string Memo { get; set; } /// /// 受理商户名称 /// [JsonProperty("name")] public string Name { get; set; } /// /// 受理商户所在省份编码 /// [JsonProperty("province_code")] public string ProvinceCode { get; set; } /// /// 受理商户客服电话 /// [JsonProperty("service_phone")] public string ServicePhone { get; set; } /// /// 受理商户来源机构标识,填写受理机构在支付宝的pid /// [JsonProperty("source")] public string Source { get; set; } } }