using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HxEnum { /// /// 其它常用枚举 /// public class OtherEnum { /// /// 转板类型:0:开盖; 1:关盖; 2:转板 /// public enum TransferTypeEnum { /// /// 开盖 /// [Description("开盖")] Open = 0, /// /// 关盖 /// [Description("关盖")] Close = 1, /// /// 转板 /// [Description("转板")] TransferPlate = 2, } } /// /// 移动类型:0:移动移液枪 1:移动夹爪 /// public enum MoveTypeEnum { /// /// 移动移液枪 /// [Description("移动移液枪")] Chanel = 0, /// /// 移动夹爪 /// [Description("移动夹爪")] Gripper = 1, } }