GetFullWeightDistRes.cs 575 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Wms.Screen.Dto.ZhongTian.Response
  5. {
  6. public class GetFullWeightDistRes
  7. {
  8. public List<string> xData { get; set; }
  9. public List<decimal> yData { get; set; }
  10. }
  11. public class BarModelRes
  12. {
  13. public List<string> xData { get; set; } = new List<string>();
  14. public List<int> yData { get; set; } = new List<int>() ;
  15. }
  16. public class BarModel2Res: BarModelRes
  17. {
  18. public List<string> x2Data { get; set; } = new List<string>();
  19. }
  20. }