HomeChartDto.cs 619 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.Common.Dto.HomeChartDto
  7. {
  8. public class StatusChartDto
  9. {
  10. public int Count { get; set; }
  11. public int StatusId { get; set; }
  12. public string StatusName { get; set; }
  13. public string Year { get; set; }
  14. //季度
  15. public int Quarterly { get; set; }
  16. }
  17. public class OrderStatusChartDto: StatusChartDto
  18. {
  19. public int OrderItemStatusId { get; set; }
  20. }
  21. public class ProductionOrderStatusChartDto: StatusChartDto
  22. {
  23. public int ProductionOrderStatus { get; set; }
  24. }
  25. }