using System; namespace Pcb.Common.Enum { [NoteAttribute("外发工序工厂_中")] public enum EnumProProcessFlowPersonStatus { /// /// 正常 /// [NoteAttribute("正常")] Normal = 1, /// /// 工厂已收货 /// [NoteAttribute("工厂已收货")] FactoryReceive = 50, /// /// 工厂已发货 /// [NoteAttribute("工厂已发货")] FactorySend = 60, /// /// 已收货 /// [NoteAttribute("已收货")] Receive = 100, /// /// 删除 /// [NoteAttribute("删除")] Delete = -1, } [NoteAttribute("外发工序类型_中")] public enum EnumProProcessFlowPersonTypeId { /// /// 个人过序 /// [NoteAttribute("个人过序")] Person = 1, /// /// 外发过序 /// [NoteAttribute("外发过序")] OutSend = 2, /// /// 外发工艺 /// [NoteAttribute("外发工艺")] OutSendCraft = 3 } }