using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 任务安排状态 /// public enum EnumTaskStatus { /// /// 待安排 /// Wait = 10, /// /// 已安排 /// Complete = 20 } }