You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.8 KiB
58 lines
1.8 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class MemberDynmModel:JdObject{
|
||
|
[JsonProperty("model_id")]
|
||
|
public long
|
||
|
|
||
|
modelId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("model_name")]
|
||
|
public string
|
||
|
|
||
|
modelName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("min_last_trade_time")]
|
||
|
public DateTime
|
||
|
|
||
|
minLastTradeTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("max_last_trade_time")]
|
||
|
public DateTime
|
||
|
|
||
|
maxLastTradeTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("avg_price")]
|
||
|
public string
|
||
|
|
||
|
avgPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("grade")]
|
||
|
public string
|
||
|
|
||
|
grade
|
||
|
{ get; set; }
|
||
|
[JsonProperty("min_trade_count")]
|
||
|
public int
|
||
|
|
||
|
minTradeCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("max_trade_count")]
|
||
|
public int
|
||
|
|
||
|
maxTradeCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("min_trade_amount")]
|
||
|
public string
|
||
|
|
||
|
minTradeAmount
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|