namespace NPP.SmartSchedue.Api.Contracts.Core.Enums; /// /// 任务状态枚举 /// public enum WorkOrderStatusEnum { /// /// 待提交 /// PendingSubmit = 1, /// /// 待复核 /// PendingReview = 2, /// /// 待整合 /// PendingIntegration = 3, /// /// 待分配 /// PendingAssignment = 4, /// /// 已分配 /// Assigned = 5, /// /// 进行中 /// InProgress = 6, /// /// 已完成 /// Completed = 7, /// /// 已取消 /// Cancelled = 99 }