using SBF.Model.Db;
namespace SBF.Model.Dto
{
public class TrusteeshipTaskResponse
{
public long Id { get; set; }
public string SpuId { get; set; }
public string SkuId { get; set; }
public long? ShopId { get; set; }
#region
public ProductSku ProductSku { get; set; }
public Product Product { get; set; }
///
/// 评价数
///
public int PevaluationCount { get; set; }
#endregion
///
/// 计划Id
///
public long? CampaignId { get; set; }
///
/// 计划名称
///
public string CampaginName { get; set; }
public long? AdGroupId { get; set; }
///
/// 单元名称
///
public string AdGroupName { get; set; }
///
/// 创意Id
///
public long? AdId { get; set; }
///
/// 创意名称
///
public string AdName { get; set; }
///
/// 锚定预算
///
public decimal? AnchorBudget { get; set; } = 0.00M;
///
/// 实际预算
///
public decimal? ActualBudget { get; set; } = 0.00M;
///
/// 出价
///
public decimal? BidPrice { get; set; }
///
/// 托管期间实收金额(营业额)
///
public decimal? ActualAmountInTrusteeship { get; set; }
///
/// 托管期间总花费
///
public decimal? CostInTrusteeship { get; set; }
///
/// 按日期分组的推广花费
///
public IList CostByDateList { get; set; }
///
/// 按日期分组的商品营业额
///
public IList ActualAmountByDateList { get; set; }
///
/// 按日期分组的免费访客量
///
public IList UVByDateList { get; set; }
///
/// 按日期分组的推广盈利
///
public IList PopluarizeNetProfitByDateList { get; set; }
///
/// 按日期分组的推广毛利
///
public IList PopluarizeProfitByDateList { get; set; }
///
/// 按日期分组的商品毛利
///
public IList ProductProfitByDateList { get; set; }
///
/// 按日期分组的商品盈利
///
public IList ProductNetProfitByDateList { get; set; }
///
/// 最近7天商品GOI
///
public decimal? Recent7dProductLevelGOI { get; set; }
///
/// 最近7天推广GOI
///
public decimal? Recent7dPopluarizeLevelGOI { get; set; }
/////
///// 最近7天推广花费
/////
//public decimal? Recent7dCost { get; set; }
/////
///// 最近7天商品毛利
/////
//public decimal? Recent7dProductLevelProfit { get; set; }
///
/// 最近30天商品GOI
///
public decimal? Recent30dProductLevelGOI { get; set; }
///
/// 最近30天推广GOI
///
public decimal? Recent30dPopluarizeLevelGOI { get; set; }
///
/// 最近30天推广成本
///
public decimal? Recent30dCost { get; set; }
///
/// 最近30天推广毛利
///
public decimal? Recent30dPopluarizeLevelProfit { get; set; }
///
/// 最近30天商品毛利
///
public decimal? Recent30dProductLevelProfit { get; set; }
///
/// 最近30天商品盈利
///
public decimal? Recent30dProductLevelNetProfit { get; set; }
///
/// 托管开始时间
///
public DateTime CreateTime { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 托管结束时间
///
public DateTime? EndTime { get; set; }
///
/// 是否结束
///
public bool IsEnd { get; set; }
///
/// 是否有效
///
public bool? IsEnabled { get; set; } = true;
///
/// 开始计算托管日期
///
public DateTime StartTrusteeshipDate { get; set; }
///
/// 业务类型/渠道 快车=2,智能投放=134217728
///
public int BusinessType { get; set; }
public Enums.PolicyType? PolicyType { get; set; }
}
}