提交
This commit is contained in:
35
DOAN.Model/MES/Bigscreen/Dto/WorkOrderBigScreenDto.cs
Normal file
35
DOAN.Model/MES/Bigscreen/Dto/WorkOrderBigScreenDto.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace DOAN.Model.MES.bigscreen.Dto;
|
||||
|
||||
public class WorkOrderBigScreenDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 工单号
|
||||
/// </summary>
|
||||
public string Workorder { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
/// </summary>
|
||||
public string ProductionName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 存货编码
|
||||
/// </summary>
|
||||
public string ProductionCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 派发数量
|
||||
/// </summary>
|
||||
public int? DispatchNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 完成数量
|
||||
/// </summary>
|
||||
public int? FinishedNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public int? Status { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user