忽略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,60 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// DishonestyDetailInfo Data Structure.
/// </summary>
[Serializable]
public class DishonestyDetailInfo : AopObject
{
/// <summary>
/// 被执行人行为具体情况
/// </summary>
[JsonProperty("behavior")]
public string Behavior { get; set; }
/// <summary>
/// 案号
/// </summary>
[JsonProperty("case_code")]
public string CaseCode { get; set; }
/// <summary>
/// 执行法院
/// </summary>
[JsonProperty("enforce_court")]
public string EnforceCourt { get; set; }
/// <summary>
/// 身份证号
/// </summary>
[JsonProperty("id_number")]
public string IdNumber { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 被执行人履行情况
/// </summary>
[JsonProperty("performance")]
public string Performance { get; set; }
/// <summary>
/// 发布日期
/// </summary>
[JsonProperty("publish_date")]
public string PublishDate { get; set; }
/// <summary>
/// 所在区域
/// </summary>
[JsonProperty("region")]
public string Region { get; set; }
}
}