using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LocalhostMES.Enums { /// /// 配方站的类型 /// public enum FormulaPartType { /// /// OP10配方 /// OP10Formula = 0, /// /// OP2030配方 /// OP203040Formula = 1, /// /// OP4050配方 /// OP506070Formula = 2, /// /// OP80配方 /// OP80Formula = 3, /// /// OP90配方 /// OP90Formula = 4, } }