using System; using System.Collections.Generic; using System.Text; namespace APT.BaseData.Domain.ApiModel.Platform { public class StatisticalData { /// /// 名称。 /// public string Name { get; set; } /// /// 数据。 /// public object Value { get; set; } /// /// 数据2。 /// public object Value2 { get; set; } public object Time { get; set; } /// /// 数据单位。 /// public string Unit { get; set; } /// /// 图标。 /// public string Icon { get; set; } /// /// 颜色。 /// public string Color { get; set; } public List Colors { get; set; } /// /// 跳转链接。 /// public string Url { get; set; } /// /// 子集。 /// public List Items { get; set; } } }