忽略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,66 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarViolationInfoPushModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarViolationInfoPushModel : AopObject
{
/// <summary>
/// 1:可在线处理, 2:不可在线处理, 3:需查询确定
/// </summary>
[JsonProperty("deal_type")]
public string DealType { get; set; }
/// <summary>
/// 暂无
/// </summary>
[JsonProperty("push_type")]
public string PushType { get; set; }
/// <summary>
/// 违章地点
/// </summary>
[JsonProperty("vi_address")]
public string ViAddress { get; set; }
/// <summary>
/// 违章罚款金额
/// </summary>
[JsonProperty("vi_fine")]
public string ViFine { get; set; }
/// <summary>
/// 是否已处理, 0:已处理1:未处理
/// </summary>
[JsonProperty("vi_handled")]
public string ViHandled { get; set; }
/// <summary>
/// 车牌号
/// </summary>
[JsonProperty("vi_number")]
public string ViNumber { get; set; }
/// <summary>
/// 违章扣分
/// </summary>
[JsonProperty("vi_point")]
public string ViPoint { get; set; }
/// <summary>
/// 违章时间(yyyyMMddhhmmss)
/// </summary>
[JsonProperty("vi_time")]
public string ViTime { get; set; }
/// <summary>
/// 违章行为
/// </summary>
[JsonProperty("vi_type")]
public string ViType { get; set; }
}
}