忽略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,42 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MerchantApplyResultRecord Data Structure.
/// </summary>
[Serializable]
public class MerchantApplyResultRecord : AopObject
{
/// <summary>
/// 签约产品名称
/// </summary>
[JsonProperty("prod_name")]
public string ProdName { get; set; }
/// <summary>
/// 如审核失败,表示该字段引发的审核失败
/// </summary>
[JsonProperty("prop_input_key")]
public string PropInputKey { get; set; }
/// <summary>
/// 认证、产品签约审核失败原因
/// </summary>
[JsonProperty("result_msg")]
public string ResultMsg { get; set; }
/// <summary>
/// 认证审核、产品签约审核状态
/// </summary>
[JsonProperty("result_status")]
public string ResultStatus { get; set; }
/// <summary>
/// 详情类型CETIFY为认证PROD为产品签约COMMENT为认证审核批注
/// </summary>
[JsonProperty("result_type")]
public string ResultType { get; set; }
}
}