using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 任务发布状态 /// public enum EnumTaskReleaseStatus { /// /// 发布中 /// InProcess = 20, /// /// 已停止 /// Stopped = 100 } }