| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wms.Screen.Dto.ZhongTian.Response
- {
- public class GetFullWeightDistRes
- {
- public List<string> xData { get; set; }
- public List<decimal> yData { get; set; }
- }
-
- public class BarModelRes
- {
- public List<string> xData { get; set; } = new List<string>();
- public List<int> yData { get; set; } = new List<int>() ;
- }
- public class BarModel2Res: BarModelRes
- {
- public List<string> x2Data { get; set; } = new List<string>();
- }
- }
|