shanji 2 years ago
parent
commit
4fc5c24bf1
  1. 12
      SBF.Model/Db/Aggregation/AggregationJDPopularizeAdSkuDaily.cs
  2. 15
      SBF.Model/Dto/Response/TrusteeshipTaskResponse.cs

12
SBF.Model/Db/Aggregation/AggregationJDPopularizeAdSkuDaily.cs

@ -61,6 +61,18 @@ namespace SBF.Model.Db
[Column(DbType = "decimal(18,2)")]
public decimal? PopularizeLevelProfit { get; set; }
/// <summary>
/// 产品维度GOI
/// </summary>
[Column(DbType = "decimal(18,2)")]
public decimal? ProductLevelGOI { get; set; }
/// <summary>
/// 产品维度毛利
/// </summary>
[Column(DbType = "decimal(18,2)")]
public decimal? ProductLevelProfit { get; set; }
[Column(DbType = "bigint")]
public long? ShopId { get; set; }

15
SBF.Model/Dto/Response/TrusteeshipTaskResponse.cs

@ -95,6 +95,21 @@ namespace SBF.Model.Dto
/// </summary>
public IList<NumberByDate> PopluarizeProfitByDateList { get; set; }
/// <summary>
/// 按日期分组的推广毛利
/// </summary>
public IList<NumberByDate> PopluarizeGrossProfitByDateList { get; set; }
/// <summary>
/// 按日期分组的商品毛利
/// </summary>
public IList<NumberByDate> ProductGrossProfitByDateList { get; set; }
/// <summary>
/// 按日期分组的商品盈利
/// </summary>
public IList<NumberByDate> ProductProfitByDateList { get; set; }
/// <summary>
/// 托管开始时间
/// </summary>

Loading…
Cancel
Save