smartScreen
This commit is contained in:
49
DOAN.Model/MES/SmartScreen/Product/DigitalTurntableModel.cs
Normal file
49
DOAN.Model/MES/SmartScreen/Product/DigitalTurntableModel.cs
Normal 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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user