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.
55 lines
1.0 KiB
55 lines
1.0 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
namespace Jd.Api.Response
|
|
{
|
|
|
|
public class MarketBdpFollowShopSumQueryResponse:JdResponse{
|
|
[JsonProperty("popCoopModeCd")]
|
|
public string
|
|
|
|
popCoopModeCd
|
|
{ get; set; }
|
|
[JsonProperty("popCoopModeDesc")]
|
|
public string
|
|
|
|
popCoopModeDesc
|
|
{ get; set; }
|
|
[JsonProperty("followShopNum")]
|
|
public long
|
|
|
|
followShopNum
|
|
{ get; set; }
|
|
[JsonProperty("followSkuNum")]
|
|
public long
|
|
|
|
followSkuNum
|
|
{ get; set; }
|
|
[JsonProperty("followSkuCancelNum")]
|
|
public long
|
|
|
|
followSkuCancelNum
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public string
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("venderName")]
|
|
public string
|
|
|
|
venderName
|
|
{ get; set; }
|
|
[JsonProperty("shopId")]
|
|
public string
|
|
|
|
shopId
|
|
{ get; set; }
|
|
[JsonProperty("dt")]
|
|
public string
|
|
|
|
dt
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|