using System; namespace Pcb.Common.Enum { [NoteAttribute("外发工序申请_中")] public enum EnumProSendStepStatus { /// /// 已取消 /// [NoteAttribute("已取消")] Cancel = -1, /// /// 正常 /// [NoteAttribute("正常")] Normal = 0, /// /// 审核中 /// [NoteAttribute("审核中")] Checking = 10, /// /// 驳回 /// [NoteAttribute("驳回")] Reject = 20, /// /// 已外发 /// [NoteAttribute("已外发")] Outsend = 80, /// /// 已收货 /// [NoteAttribute("已收货")] Received = 90, } [NoteAttribute("外发工序申请类型_中")] public enum EnumProSendStepType { /// /// 钻孔 /// [NoteAttribute("钻孔")] ZhuanKong = 1, /// /// 工序 /// [NoteAttribute("工序")] Step = 2, /// /// 工艺 /// [NoteAttribute("工艺")] Craft = 3 } [NoteAttribute("外发钻孔申请状态")] public enum EnumProSendStepStatusZK { /// /// 已取消 /// [NoteAttribute("已取消")] Cancel = -1, /// /// 正常 /// [NoteAttribute("正常")] Normal = 0, /// /// 审核中 /// [NoteAttribute("审核中")] Checking = 10, /// /// 驳回 /// [NoteAttribute("驳回")] Reject = 20, /// /// 已外发 /// [NoteAttribute("已外发")] Outsend = 80, /// /// 已收货 /// [NoteAttribute("已收货")] Received = 90, } }