using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class ShopLevelRuleDTO:JdObject{ [JsonProperty("venderId")] public long venderId { get; set; } [JsonProperty("customerLevel")] public int customerLevel { get; set; } [JsonProperty("customerLevelName")] public string customerLevelName { get; set; } [JsonProperty("minOrderPrice")] public long minOrderPrice { get; set; } [JsonProperty("maxOrderPrice")] public long maxOrderPrice { get; set; } [JsonProperty("minOrderCount")] public int minOrderCount { get; set; } [JsonProperty("maxOrderCount")] public int maxOrderCount { get; set; } } }