using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUCMA.STORE.Entity.Enums { public enum OutStoreStatus { /// /// 创建 /// Create, /// /// 等待 /// Await, /// /// 正在 /// Being, /// /// 完成 /// Achieve, } }