using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HxEnum { /// /// 项目枚举 /// public class ProjectEnum { /// /// 项目枚举 参数 /// public enum ProjectEnum_Parameter { ///// ///// 全自动WesternBlot系统 ///// //[Description("WB_2022RS100401")] //WB_2022RS100401 = 0, /// /// 自动化链霉菌克隆挑选工作站 /// [Description("Auto_2022RS110401")] Auto_2022RS110401 = 1, /// /// 上样系统 /// [Description("FeedingPlate")] FeedingPlate = 2 } } }