ChartDto.cs 618 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace WeApp.BaseSystem.Query.Dto
  3. {
  4. public class ChartLogDto
  5. {
  6. public string GroupNo { get; set; }
  7. public string GroupName { get; set; }
  8. public decimal Matched { get; set; }
  9. public decimal NotMatched { get; set; }
  10. }
  11. public class ChartSeriesDto
  12. {
  13. public ChartSeriesDto()
  14. {
  15. }
  16. public ChartSeriesDto(string name)
  17. {
  18. Name = name;
  19. Data = new List<decimal>();
  20. }
  21. public string Name { get; set; }
  22. public List<decimal> Data { get; set; }
  23. }
  24. }