namespace SiNan.Model.Dto
{
public class Product360PopularizeAnalysisAdGroupResponse
{
///
/// 业务渠道 快车=2 智能推广= 134217728
///
public int BusinessType { get; set; }
///
/// 计划Id
///
public long CampaignId { get; set; }
///
/// 单元Id
///
public long AdGroupId { get; set; }
///
/// 单元名称
///
public string AdGroupName { get; set; }
///
/// 最近7天的计划GOI
///
public GOIResponse AdGroupGOI_Recent7Day { get; set; }
///
/// 最近30天的计划GOI
///
public GOIResponse AdGroupGOI_Recent30Day { get; set; }
///
/// 花费
///
public decimal Cost { get; set; }
///
/// 订单行
///
public int OrderCnt { get; set; }
///
/// 展现次数
///
public int Impressions { get; set; }
///
/// 点击次数
///
public int Clicks { get; set; }
}
}