using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SimpleMockModel Data Structure.
///
[Serializable]
public class SimpleMockModel : AopObject
{
///
/// 11
///
[JsonProperty("count_items")]
public long CountItems { get; set; }
///
/// 111
///
[JsonProperty("happen_time")]
public string HappenTime { get; set; }
///
/// 1.2f
///
[JsonProperty("price_num")]
public string PriceNum { get; set; }
///
/// false
///
[JsonProperty("right")]
public bool Right { get; set; }
///
/// trade_no
///
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}