初始提交
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user