忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

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