using System.ComponentModel; namespace Admin.NET.Core { /// /// 工段 /// public enum LesWorkshopSection { /// /// 切割 /// [Description("切割")] QIEGE = 1, /// /// 压合 /// [Description("压合")] YAHE = 2, /// /// CNC /// [Description("CNC")] CNC = 3 } }