Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/Common/WaferProcessStatus.cs

13 lines
154 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace Aitex.Core.Common
{
2023-08-10 14:20:55 +08:00
public enum WaferProcessStatus
2023-04-13 11:51:03 +08:00
{
Idle = 0,
InProcess = 1,
Completed = 2,
Failed = 3,
Wait = 4,
Abort = 5
}
}