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.

51 lines
1.3 KiB

2 years ago
namespace SiNan.Model.Dto
2 years ago
{
2 years ago
public class ProductSkuGOIResponse : ProductSkuResponse
2 years ago
{
2 years ago
/// <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>
/// 总花费
2 years ago
/// </summary>
public decimal TotalCost { get; set; }
/// <summary>
/// 总亏损 (正赚负亏)
2 years ago
/// </summary>
public decimal TotalDeficit { get; set; }
/// <summary>
/// 最大亏损
/// </summary>
public decimal MaxDeficit { get; set; }
2 years ago
}
}