using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUCMA.STORE.Entity.Enums { /// /// 任务状态 /// public enum TaskStatus { /// /// 等待 /// Await, /// /// 正在 /// Being, /// /// 完成 /// Achieve, /// /// 异常 /// Warning, } }