using System.ComponentModel; namespace Admin.NET.Core { /// /// 检验结果 /// public enum InspectionResultsEnum { /// /// 未检验 /// WEIJIANYAN = 1, /// /// 合格 /// HEGE = 2, /// /// 不合格 /// BUHEGE = 3, /// /// 带意见接收 /// DAIYIJIANJIESHOU = 4 } }