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.
47 lines
887 B
47 lines
887 B
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; }
|
|
}
|
|
}
|
|
|