忽略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,44 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SignTaskFileResult Data Structure.
/// </summary>
[Serializable]
public class SignTaskFileResult : AopObject
{
/// <summary>
/// 业务初始化时传入的流水号
/// </summary>
[JsonProperty("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 扩展参数信息,可根据不同接入方需求定制内容
/// </summary>
[JsonProperty("biz_info")]
public string BizInfo { get; set; }
/// <summary>
/// 已签名文档列表
/// </summary>
[JsonProperty("signed_file_list")]
public List<SignedFileInfo> SignedFileList { get; set; }
/// <summary>
/// 签约结果 1FAIL | 解释:签约失败 2SUCCESS | 解释:完成 3PROCESS | 解释:签约中 4EXPIRED | 解释:任务过期
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 签约任务编号
/// </summary>
[JsonProperty("task_id")]
public string TaskId { get; set; }
}
}