using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumProProcessExceptionType { /// /// 未设置 /// [NoteAttribute("未设置")] None = 0, /// /// 返工 /// [NoteAttribute("返工")] Reject = 1, /// /// 让步接收 /// [NoteAttribute("让步接收")] GoOn = 2, /// /// 报废 /// [NoteAttribute("报废")] Scrap = 3, } public enum EnumProProcessExceptionStatus { /// /// 待审核 /// [NoteAttribute("待审核")] WaitCheck = 0, /// /// 待处理 /// [NoteAttribute("待处理")] WaitWork = 1, /// /// 处理完成 /// [NoteAttribute("处理完成")] Complete = 10, } }