订单大屏

This commit is contained in:
卢江海
2025-03-26 17:27:14 +08:00
parent 28a4a51927
commit 7f3693e11c
7 changed files with 165 additions and 56 deletions

View File

@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.SmartScreen.Order.Dto
{
public class LargeScreenOrderDto
{
/// <summary>
/// 订单总数
/// </summary>
public int OrderTotalNum { get; set; }
/// <summary>
/// 未完成订单总数
/// </summary>
public int IncompleteOrderNum { get; set; }
/// <summary>
/// 已完成订单总数
/// </summary>
public int CompletedOrderNum { get; set; }
/// <summary>
/// 本月订单总数
/// </summary>
public int MonthOrderTotalNum { get; set; }
/// <summary>
/// 本月已完成订单总数
/// </summary>
public int MonthIncompleteOrderNum { get; set; }
/// <summary>
/// 本月未完成订单总数
/// </summary>
public int MonthCompletedOrderNum { get; set; }
}
}