Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/MECF/Framework/Common/SubstrateTrackings/ProcessStateEnum.cs

14 lines
204 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace MECF.Framework.Common.SubstrateTrackings
{
public enum ProcessStateEnum
{
Unprocessed = 0,
InProcess = 1,
Processed = 2,
Skipped = 3,
Aborted = 4,
Stopped = 5,
Rejected = 6
}
}