忽略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,48 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ZhimaCreditScoreBriefGetModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditScoreBriefGetModel : AopObject
{
/// <summary>
/// 350950之间 业务判断的准入标准 建议业务确定一个稳定的判断标准 频繁的变更该标准可能导致接口被停用
/// </summary>
[JsonProperty("admittance_score")]
public long AdmittanceScore { get; set; }
/// <summary>
/// 对应的证件号(未脱敏)或支付宝uid
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型 目前支持三种IDENTITY_CARD(身份证),PASSPORT(护照),ALIPAY_USER_ID(支付宝uid)
/// </summary>
[JsonProperty("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 用户姓名 当证件类型为ALIPAY_USER_ID时不需要传入
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 产品码,直接使用[示例]给出的值
/// </summary>
[JsonProperty("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性对于用户使用相同transaction_id的查询芝麻在一天86400秒内返回首次查询数据超过有效期的查询即为无效并返回异常有效期内的重复查询不重新计费
/// </summary>
[JsonProperty("transaction_id")]
public string TransactionId { get; set; }
}
}