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.
68 lines
1.3 KiB
68 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 ActivityStatistics:JdObject{
|
||
|
[JsonProperty("activityId")]
|
||
|
public long
|
||
|
|
||
|
activityId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("statisticsDateStr")]
|
||
|
public string
|
||
|
|
||
|
statisticsDateStr
|
||
|
{ get; set; }
|
||
|
[JsonProperty("discountedPrice")]
|
||
|
public double
|
||
|
|
||
|
discountedPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("couponUsedCount")]
|
||
|
public long
|
||
|
|
||
|
couponUsedCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("activityClickUV")]
|
||
|
public long
|
||
|
|
||
|
activityClickUV
|
||
|
{ get; set; }
|
||
|
[JsonProperty("activityType")]
|
||
|
public int
|
||
|
|
||
|
activityType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("activityExportUV")]
|
||
|
public long
|
||
|
|
||
|
activityExportUV
|
||
|
{ get; set; }
|
||
|
[JsonProperty("relatedOrderPrice")]
|
||
|
public double
|
||
|
|
||
|
relatedOrderPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("relatedOrderCount")]
|
||
|
public long
|
||
|
|
||
|
relatedOrderCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("couponDrawCount")]
|
||
|
public long
|
||
|
|
||
|
couponDrawCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("activityAwardUV")]
|
||
|
public long
|
||
|
|
||
|
activityAwardUV
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|