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.
92 lines
1.6 KiB
92 lines
1.6 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 IsvActivityDTO:JdObject{
|
|
[JsonProperty("id")]
|
|
public long
|
|
|
|
id
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public long
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("categoryId")]
|
|
public int
|
|
|
|
categoryId
|
|
{ get; set; }
|
|
[JsonProperty("name")]
|
|
public string
|
|
|
|
name
|
|
{ get; set; }
|
|
[JsonProperty("beginTime")]
|
|
public DateTime
|
|
|
|
beginTime
|
|
{ get; set; }
|
|
[JsonProperty("endTime")]
|
|
public DateTime
|
|
|
|
endTime
|
|
{ get; set; }
|
|
[JsonProperty("imageUrl")]
|
|
public string
|
|
|
|
imageUrl
|
|
{ get; set; }
|
|
[JsonProperty("note")]
|
|
public string
|
|
|
|
note
|
|
{ get; set; }
|
|
[JsonProperty("channelType")]
|
|
public string
|
|
|
|
channelType
|
|
{ get; set; }
|
|
[JsonProperty("ruleType")]
|
|
public int
|
|
|
|
ruleType
|
|
{ get; set; }
|
|
[JsonProperty("shared")]
|
|
public int
|
|
|
|
shared
|
|
{ get; set; }
|
|
[JsonProperty("source")]
|
|
public int
|
|
|
|
source
|
|
{ get; set; }
|
|
[JsonProperty("isvUrl")]
|
|
public string
|
|
|
|
isvUrl
|
|
{ get; set; }
|
|
[JsonProperty("pluginName")]
|
|
public string
|
|
|
|
pluginName
|
|
{ get; set; }
|
|
[JsonProperty("status")]
|
|
public int
|
|
|
|
status
|
|
{ get; set; }
|
|
[JsonProperty("callBackUrl")]
|
|
public string
|
|
|
|
callBackUrl
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|