smartScreen

This commit is contained in:
qianhao.xu
2024-12-19 19:44:47 +08:00
parent dd534102c0
commit 1e026edc8f
6 changed files with 261 additions and 3 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.SmartScreen.Product
{
/// <summary>
/// 数字翻牌器
/// </summary>
public class DigitalTurntableModel
{
/// <summary>
/// 今日工单数
/// </summary>
public int WorkorderQuantity { get; set; }
/// <summary>
/// 今日已经完成工单数
/// </summary>
public int FinishedWorkorderQuantity { get; set; }
/// <summary>
/// 今日未完成工单数
/// </summary>
public int UnFinishedWorkorderQuantity { get; set; }
/// <summary>
/// 今日生产计划总数
/// </summary>
public int ProductionPlanQuantity { get; set; }
/// <summary>
/// 今日生产完成总数
/// </summary>
public int ProductionFinishQuantity { get; set; }
/// <summary>
/// 今天动用组数
/// </summary>
public int GroupQuantity { get; set; }
}
}