订单大屏

This commit is contained in:
卢江海
2025-03-26 15:19:34 +08:00
parent e11cbd080d
commit e41c2aa6de
11 changed files with 153 additions and 49 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
{
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; }
}
}

View File

@@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.SmartScreen.Order
{
internal class Order
{
}
}