using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.Dto.ZhongTian.Response { public class GetFullWeightDistRes { public List xData { get; set; } public List yData { get; set; } } public class BarModelRes { public List xData { get; set; } = new List(); public List yData { get; set; } = new List() ; } public class BarModel2Res: BarModelRes { public List x2Data { get; set; } = new List(); } }