步步为盈
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.

87 lines
1.5 KiB

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class GroupModelDomain:JdObject{
[JsonProperty("id")]
public long
id
{ get; set; }
[JsonProperty("venderId")]
public long
venderId
{ get; set; }
[JsonProperty("modelId")]
public long
modelId
{ get; set; }
[JsonProperty("modelName")]
public string
modelName
{ get; set; }
[JsonProperty("modelDesc")]
public string
modelDesc
{ get; set; }
[JsonProperty("range")]
public string
range
{ get; set; }
[JsonProperty("ruleExp")]
public string
ruleExp
{ get; set; }
[JsonProperty("isDelete")]
public int
isDelete
{ get; set; }
[JsonProperty("createTime")]
public DateTime
createTime
{ get; set; }
[JsonProperty("modifyTime")]
public DateTime
modifyTime
{ get; set; }
[JsonProperty("modelNum")]
public int
modelNum
{ get; set; }
[JsonProperty("modelType")]
public int
modelType
{ get; set; }
[JsonProperty("taskId")]
public int
taskId
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
[JsonProperty("modelDescList")]
public List<string>
modelDescList
{ get; set; }
}
}