初始提交
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// PromoteDetailChannelModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class PromoteDetailChannelModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 渠道id
|
||||
/// </summary>
|
||||
[JsonProperty("channel_id")]
|
||||
public string ChannelId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 渠道名称
|
||||
/// </summary>
|
||||
[JsonProperty("channel_name")]
|
||||
public string ChannelName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 查询时间段内的推广数据
|
||||
/// </summary>
|
||||
[JsonProperty("part_promote_data")]
|
||||
public PromoteDataModel PartPromoteData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总推广数据
|
||||
/// </summary>
|
||||
[JsonProperty("total_promote_data")]
|
||||
public PromoteDataModel TotalPromoteData { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user