using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { [Note("子料号")] public enum EnumProSubCardInfoStatus { /// /// 生产中 /// [Note("生产中")] InProduction = 10, /// /// 完成 /// [Note("完成")] Complete = 20, /// /// 作废 /// [Note("作废")] Cancel = 30, /// /// 暂停 /// [Note("暂停")] Pause = 40, } }