namespace SiNan.Model.Dto { public class ProductGOIResponse : ProductResponse { /// /// 商品维度 昨日GOI /// public GOIResponse ProductGOI_Yestoday { get; set; } /// /// 商品维度 近7天GOI /// public GOIResponse ProductGOI_Recent7Day { get; set; } /// /// 商品维度 近30天GOI /// public GOIResponse ProductGOI_Recent30Day { get; set; } /// /// 推广维度 昨日GOI /// public GOIResponse PromotionGOI_Yestoday { get; set; } /// /// 推广维度 近7天GOI /// public GOIResponse PromotionGOI_Recent7Day { get; set; } /// /// 推广维度 近30天GOI /// public GOIResponse PromotionGOI_Recent30Day { get; set; } /// /// 累计花费 /// public decimal TotalCost { get; set; } /// /// 累计亏损 /// public decimal TotalDeficit { get; set; } /// /// 最大亏损 /// public decimal MaxDeficit { get; set; } /// /// SKU GOI /// public List ProductSkuGOIList { get; set; } } }