初始化项目
This commit is contained in:
46
AUTS.Domain/Application/OInternalNumber.cs
Normal file
46
AUTS.Domain/Application/OInternalNumber.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AUTS.Domain
|
||||
{
|
||||
public class OInternalNumber
|
||||
{
|
||||
/// <summary>
|
||||
/// 已确认
|
||||
/// </summary>
|
||||
public int Confirm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分配条码
|
||||
/// </summary>
|
||||
public int BarCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 已排产
|
||||
/// </summary>
|
||||
public int Scheduling { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产中
|
||||
/// </summary>
|
||||
public int Yield { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产完成
|
||||
/// </summary>
|
||||
public int prodCompletion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 已完成
|
||||
/// </summary>
|
||||
public int Accomplish { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单总数
|
||||
/// </summary>
|
||||
public int orderCount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user