| 12345678910111213141516171819202122232425262728293031 |
- 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; }
- }
- }
|