using System.Collections.Generic; namespace CB.Entity { public class TrendMissEntity { /// /// 最大遗落 /// public IEnumerable MaxMissList { get; set; } /// /// 平均遗漏 /// public IEnumerable AvgMissList { get; set; } /// /// 出现次数 /// public IEnumerable AppearsList { get; set; } } public class TrendDataEntity : TrendMissEntity { /// /// 原始数据 /// public IList DataItems { get; set; } /// /// 走势图数据 /// public IList TrendDataItems { get; set; } } public class TrendDataStatItem { /// /// 是否为空 /// public bool IsEmpty { get; set; } /// /// 值 /// public string Value { get; set; } } }