using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Services.ERP.Dtos { /// /// 设备利用率DTO /// public class LineRateDto { /// /// x轴 /// public xAxisDto01 xAxis { get;set; } = new xAxisDto01(); /// /// series /// public List series { get; set; } = new List(); } public class xAxisDto01 { public string type { get; set; } = "category"; public List data { get; set; } = new List(); } public class seriesDto01 { public bool smooth { get; set; } = true; public string type { get; set; } = "line"; public List data { get; set; } = new List(); } }