| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 | 
							- 
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace YG
 
- {
 
-     public enum DeviceType
 
-     {
 
-         PLC_S7,
 
-         OPCUa,
 
-         Modbus,
 
-         Socket,
 
-         其他,
 
-     }
 
-     public enum EnumComList
 
-     {
 
-        
 
-     }
 
-     public enum EnumKeyList
 
-     {
 
-         执行取动作,
 
-         取动作执行中,
 
-         取完成,
 
-         执行放动作,
 
-         放执行中,
 
-         放完成,
 
-         取的过程中出现故障,
 
-         放的过程中出现故障,
 
-         前置条件不满足不能执行,
 
-         当前服务端可以接受指令并执行,
 
-         当前服务端可以接受指令但是不执行,
 
-     }
 
-     public enum TaskLeave
 
-     {
 
-         None,
 
-         Low,
 
-         Hight,
 
-         Now
 
-     }
 
-     public enum TaskType
 
-     {
 
-         取=1,放=4,移动=7
 
-     }
 
-     public enum EnumDeviceList
 
-     {
 
-         /// <summary>
 
-         /// 柔性线-机器人
 
-         /// </summary>
 
-         Flexible_Roboot,
 
-         /// <summary>
 
-         /// 柔性线-机床
 
-         /// </summary>
 
-         Flexible_Machine1,
 
-         /// <summary>
 
-         /// 柔性线-机床
 
-         /// </summary>
 
-         Flexible_Machine2,
 
-         /// <summary>
 
-         /// 柔性线-机床
 
-         /// </summary>
 
-         Flexible_Machine3,
 
-         /// <summary>
 
-         /// 柔性线-机床
 
-         /// </summary>
 
-         Flexible_Machine4,
 
-         /// <summary>
 
-         /// 柔性线-打标机
 
-         /// </summary>
 
-         Flexible_Print,
 
-         /// <summary>
 
-         /// 柔性线-清洗剂
 
-         /// </summary>
 
-         Flexible_Clean,
 
-         /// <summary>
 
-         /// 智能单元-机器人
 
-         /// </summary>
 
-         Intelligent_Roboot,
 
-         /// <summary>
 
-         /// 智能单元-机床
 
-         /// </summary>
 
-         Intelligent_Machine,
 
-         /// <summary>
 
-         /// 质量中心-机器人
 
-         /// </summary>
 
-         Quality_Roboot,
 
-     }
 
- }
 
 
  |