using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Utils { /// /// 考核实训状态 /// public enum TrainExamStatu { /// /// 1 待评分 /// [Description("待评分")] WaitGrade = 1, /// /// 2 已评分 /// [Description("已评分")] AlreadGrade = 2, /// /// 3 不显示 /// [Description("不显示")] NoShow = 3 } }