using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_system_overview { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class system_overviewData { public decimal? Amount { get; set; } public List list { get; set; } } public class system_overview { /// /// 回转窑 /// public decimal? RotaryKiln { get; set; } /// /// 煤磨 /// public decimal? CoalMill { get; set; } /// /// 生料 /// public decimal? RawMaterial { get; set; } /// /// 破碎 /// public decimal? Broken { get; set; } } }