using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// BaseInfo Data Structure. /// [Serializable] public class BaseInfo : AopObject { /// /// 支付宝服务窗名称 /// [JsonProperty("alipay_fuwu_name")] public string AlipayFuwuName { get; set; } /// /// 如果商户的app需要签约使用移动快捷支付产品,需要上传该app的名称 /// [JsonProperty("app_name")] public string AppName { get; set; } /// /// 企业联系人信息 /// [JsonProperty("contact_info")] public List ContactInfo { get; set; } /// /// 企业logo图片 /// [JsonProperty("logo_pic")] public string LogoPic { get; set; } /// /// 所属MCCCode,详情可参考 /// /// 商家经营类目 /// /// [JsonProperty("mcc_code")] public string MccCode { get; set; } /// /// 企业别称,例如浙江飞猪网络有限公司别称为阿里旅行。需要签约芝麻信用产品必须要传入该字段 /// [JsonProperty("short_name")] public string ShortName { get; set; } /// /// 企业特殊资质图片,可参考 /// /// 商家经营类目 /// /// [JsonProperty("special_license_pic")] public List SpecialLicensePic { get; set; } /// /// 使用场景,签约芝麻信用产品必须传入该参数,比如用于放贷风险防控、免押金租车等 /// [JsonProperty("usage_scenario")] public string UsageScenario { get; set; } /// /// 企业网址信息 /// [JsonProperty("web_address")] public List WebAddress { get; set; } /// /// 网址授权函图片 /// [JsonProperty("web_auth_pic")] public string WebAuthPic { get; set; } /// /// 微信公众号名称 /// [JsonProperty("weixin_public_name")] public string WeixinPublicName { get; set; } } }