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 PopluarizeProfitByDateList { get; set; } /// /// 托管开始时间 /// public DateTime CreateTime { get; set; } /// /// 托管结束时间 /// public DateTime? EndTime { get; set; } /// /// 是否结束 /// public bool IsEnd { get; set; } /// /// 开始计算托管日期 /// public DateTime StartTrusteeshipDate { get; set; } /// /// 业务类型/渠道 快车=2,智能投放=134217728 /// public int BusinessType { get; set; } public Enums.PolicyType? PolicyType { get; set; } } }