using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.Common.Dto.HomeChartDto { public class StatusChartDto { public int Count { get; set; } public int StatusId { get; set; } public string StatusName { get; set; } public string Year { get; set; } //季度 public int Quarterly { get; set; } } public class OrderStatusChartDto: StatusChartDto { public int OrderItemStatusId { get; set; } } public class ProductionOrderStatusChartDto: StatusChartDto { public int ProductionOrderStatus { get; set; } } }