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.
180 lines
3.3 KiB
180 lines
3.3 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
namespace Jd.Api.Response
|
|
{
|
|
|
|
public class MarketBdpOLShopSumQueryResponse:JdResponse{
|
|
[JsonProperty("platformDesc")]
|
|
public string
|
|
|
|
platformDesc
|
|
{ get; set; }
|
|
[JsonProperty("avgRt")]
|
|
public string
|
|
|
|
avgRt
|
|
{ get; set; }
|
|
[JsonProperty("avgRtNewuser")]
|
|
public double
|
|
|
|
avgRtNewuser
|
|
{ get; set; }
|
|
[JsonProperty("avgRtOlduser")]
|
|
public double
|
|
|
|
avgRtOlduser
|
|
{ get; set; }
|
|
[JsonProperty("pv")]
|
|
public long
|
|
|
|
pv
|
|
{ get; set; }
|
|
[JsonProperty("uv")]
|
|
public long
|
|
|
|
uv
|
|
{ get; set; }
|
|
[JsonProperty("landingTimes")]
|
|
public long
|
|
|
|
landingTimes
|
|
{ get; set; }
|
|
[JsonProperty("quitTimes")]
|
|
public long
|
|
|
|
quitTimes
|
|
{ get; set; }
|
|
[JsonProperty("itemPv")]
|
|
public long
|
|
|
|
itemPv
|
|
{ get; set; }
|
|
[JsonProperty("itemUv")]
|
|
public long
|
|
|
|
itemUv
|
|
{ get; set; }
|
|
[JsonProperty("homepagePv")]
|
|
public long
|
|
|
|
homepagePv
|
|
{ get; set; }
|
|
[JsonProperty("homepageUv")]
|
|
public long
|
|
|
|
homepageUv
|
|
{ get; set; }
|
|
[JsonProperty("addToCartSkunum")]
|
|
public long
|
|
|
|
addToCartSkunum
|
|
{ get; set; }
|
|
[JsonProperty("addToCartSkutypenum")]
|
|
public long
|
|
|
|
addToCartSkutypenum
|
|
{ get; set; }
|
|
[JsonProperty("addToCartUsers")]
|
|
public long
|
|
|
|
addToCartUsers
|
|
{ get; set; }
|
|
[JsonProperty("ordNumDeal")]
|
|
public long
|
|
|
|
ordNumDeal
|
|
{ get; set; }
|
|
[JsonProperty("saleQttyDeal")]
|
|
public long
|
|
|
|
saleQttyDeal
|
|
{ get; set; }
|
|
[JsonProperty("beforePrefrAmountDeal")]
|
|
public double
|
|
|
|
beforePrefrAmountDeal
|
|
{ get; set; }
|
|
[JsonProperty("afterPrefrAmountDeal")]
|
|
public double
|
|
|
|
afterPrefrAmountDeal
|
|
{ get; set; }
|
|
[JsonProperty("ordUserNumDeal")]
|
|
public long
|
|
|
|
ordUserNumDeal
|
|
{ get; set; }
|
|
[JsonProperty("pvOlduser")]
|
|
public long
|
|
|
|
pvOlduser
|
|
{ get; set; }
|
|
[JsonProperty("uvOlduser")]
|
|
public long
|
|
|
|
uvOlduser
|
|
{ get; set; }
|
|
[JsonProperty("visitsOlduser")]
|
|
public long
|
|
|
|
visitsOlduser
|
|
{ get; set; }
|
|
[JsonProperty("pvNewuser")]
|
|
public long
|
|
|
|
pvNewuser
|
|
{ get; set; }
|
|
[JsonProperty("uvNewuser")]
|
|
public long
|
|
|
|
uvNewuser
|
|
{ get; set; }
|
|
[JsonProperty("visitsNewuser")]
|
|
public long
|
|
|
|
visitsNewuser
|
|
{ get; set; }
|
|
[JsonProperty("tp")]
|
|
public string
|
|
|
|
tp
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public string
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("venderName")]
|
|
public string
|
|
|
|
venderName
|
|
{ get; set; }
|
|
[JsonProperty("shopId")]
|
|
public string
|
|
|
|
shopId
|
|
{ get; set; }
|
|
[JsonProperty("shopName")]
|
|
public string
|
|
|
|
shopName
|
|
{ get; set; }
|
|
[JsonProperty("visits")]
|
|
public long
|
|
|
|
visits
|
|
{ get; set; }
|
|
[JsonProperty("bounceTimes")]
|
|
public long
|
|
|
|
bounceTimes
|
|
{ get; set; }
|
|
[JsonProperty("dt")]
|
|
public string
|
|
|
|
dt
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|