Sic.Framework/MECF.Framework.Common/MECF/Framework/Common/FAServices/E40s/CJState.cs

13 lines
181 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace MECF.Framework.Common.FAServices.E40s
{
public enum CJState
{
QUEUED = 0,
SELECTED = 1,
WAITING_FOR_START = 2,
EXECUTING = 3,
PAUSED = 4,
COMPLETED = 5
}
}