42 lines
799 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|