using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Services.ERP.Dtos { /// /// 各产品生产数量 /// public class ProductQtyDto { /// /// x轴 /// public xAxisDto xAxis { get;set; } = new xAxisDto(); /// /// series /// public List series { get; set; } = new List(); } public class xAxisDto { public string type { get; set; } public List data { get; set; } = new List(); } public class seriesDto { public string name { get; set; } public string type { get; set; } public List data { get; set; } = new List(); } }