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