| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.Mcp
- {
- public class Enums
- {
- }
- /// <summary>
- /// 计划类型
- /// </summary>
- public enum PlanType
- {
- /// <summary>
- /// 热处理
- /// </summary>
- HTT = 0,
- /// <summary>
- /// 管加工
- /// </summary>
- MCP = 1,
- /// <summary>
- /// 接箍
- /// </summary>
- COUP = 2
- }
- /// <summary>
- /// 投入产出类型
- /// </summary>
- public enum PlanIOType
- {
- /// <summary>
- /// 投入
- /// </summary>
- INPUT = 0,
- /// <summary>
- /// 产出
- /// </summary>
- OUTPUT = 1
- }
- }
|