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 { return MaxDeficitThreshold ?? 0M; } } //public List ProductSkuGOIList { get; set; } } }