32 lines
613 B
C#
32 lines
613 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.Common.Enum
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 订单状态
|
||
|
|
/// </summary>
|
||
|
|
public enum OrderStatus
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 待生产
|
||
|
|
/// </summary>
|
||
|
|
ToBeProduced=0,
|
||
|
|
/// <summary>
|
||
|
|
/// 正在生产
|
||
|
|
/// </summary>
|
||
|
|
InProduction=1,
|
||
|
|
/// <summary>
|
||
|
|
/// 暂停
|
||
|
|
/// </summary>
|
||
|
|
Pause=2,
|
||
|
|
/// <summary>
|
||
|
|
/// 结束生产
|
||
|
|
/// </summary>
|
||
|
|
Finished=3
|
||
|
|
}
|
||
|
|
}
|