忽略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>
/// SimpleMockModel Data Structure.
/// </summary>
[Serializable]
public class SimpleMockModel : AopObject
{
/// <summary>
/// 11
/// </summary>
[JsonProperty("count_items")]
public long CountItems { get; set; }
/// <summary>
/// 111
/// </summary>
[JsonProperty("happen_time")]
public string HappenTime { get; set; }
/// <summary>
/// 1.2f
/// </summary>
[JsonProperty("price_num")]
public string PriceNum { get; set; }
/// <summary>
/// false
/// </summary>
[JsonProperty("right")]
public bool Right { get; set; }
/// <summary>
/// trade_no
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}