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.
78 lines
1.3 KiB
78 lines
1.3 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 JOSVideoSkuRelative:JdObject{
|
||
|
[JsonProperty("id")]
|
||
|
public long
|
||
|
|
||
|
id
|
||
|
{ get; set; }
|
||
|
[JsonProperty("videoId")]
|
||
|
public long
|
||
|
|
||
|
videoId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("venderId")]
|
||
|
public long
|
||
|
|
||
|
venderId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("productId")]
|
||
|
public long
|
||
|
|
||
|
productId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("skuId")]
|
||
|
public long
|
||
|
|
||
|
skuId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("categoryId")]
|
||
|
public long
|
||
|
|
||
|
categoryId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("status")]
|
||
|
public int
|
||
|
|
||
|
status
|
||
|
{ get; set; }
|
||
|
[JsonProperty("verifier")]
|
||
|
public string
|
||
|
|
||
|
verifier
|
||
|
{ get; set; }
|
||
|
[JsonProperty("verifyDesc")]
|
||
|
public string
|
||
|
|
||
|
verifyDesc
|
||
|
{ get; set; }
|
||
|
[JsonProperty("applyReason")]
|
||
|
public string
|
||
|
|
||
|
applyReason
|
||
|
{ get; set; }
|
||
|
[JsonProperty("createdDate")]
|
||
|
public DateTime
|
||
|
|
||
|
createdDate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("modifiedDate")]
|
||
|
public DateTime
|
||
|
|
||
|
modifiedDate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("videoType")]
|
||
|
public int
|
||
|
|
||
|
videoType
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|