54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
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 MaterialRequisitionQuantity { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 今日生产计划总数
|
|
/// </summary>
|
|
public int ProductionPlanQuantity { get; set; }
|
|
|
|
|
|
///// <summary>
|
|
///// 今日生产完成总数
|
|
///// </summary>
|
|
//public int ProductionFinishQuantity { get; set; }
|
|
|
|
// 今日出货数量
|
|
public int ShipmentQuantity { get; set; }
|
|
/// <summary>
|
|
/// 今天动用组数
|
|
/// </summary>
|
|
public int GroupQuantity { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|