Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SimpleMockModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

42 lines
799 B
C#

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; }
}
}