You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

55 lines
1.4 KiB

namespace SiNan.Model.Dto
{
public class ProductGOIResponse : ProductResponse
{
/// <summary>
/// 商品维度 昨日GOI
/// </summary>
public GOIResponse ProductGOI_Yestoday { get; set; }
/// <summary>
/// 商品维度 近7天GOI
/// </summary>
public GOIResponse ProductGOI_Recent7Day { get; set; }
/// <summary>
/// 商品维度 近30天GOI
/// </summary>
public GOIResponse ProductGOI_Recent30Day { get; set; }
/// <summary>
/// 推广维度 昨日GOI
/// </summary>
public GOIResponse PromotionGOI_Yestoday { get; set; }
/// <summary>
/// 推广维度 近7天GOI
/// </summary>
public GOIResponse PromotionGOI_Recent7Day { get; set; }
/// <summary>
/// 推广维度 近30天GOI
/// </summary>
public GOIResponse PromotionGOI_Recent30Day { get; set; }
/// <summary>
/// 累计花费
/// </summary>
public decimal TotalCost { get; set; }
/// <summary>
/// 累计亏损 (正赚负亏)
/// </summary>
public decimal TotalDeficit { get; set; }
/// <summary>
/// 最大亏损
/// </summary>
public decimal MaxDeficit { get { return MaxDeficitThreshold ?? 0M; } }
//public List<ProductSkuGOIResponse> ProductSkuGOIList { get; set; }
}
}