忽略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,36 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarMaintainDataUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarMaintainDataUpdateModel : AopObject
{
/// <summary>
/// 门店或者服务的编码
/// </summary>
[JsonProperty("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 事件类型(1:上下线 2:服务价格)
/// </summary>
[JsonProperty("event_id")]
public long EventId { get; set; }
/// <summary>
/// 来源(1:汽车超人)
/// </summary>
[JsonProperty("source")]
public string Source { get; set; }
/// <summary>
/// 类型(1:门店 2:服务)
/// </summary>
[JsonProperty("type_id")]
public string TypeId { get; set; }
}
}