using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Entity.Enum { /// /// Ai_训练模块枚举 /// public enum Ai_TrainingModuleEnum { /// /// 专项教学 /// [Description("专项教学")] Special = 1, /// /// 测评考级 /// [Description("测评考级")] GradingTest = 2, /// /// AI赛场 /// [Description("AI赛场")] Arena = 3, /// /// AI体测 /// [Description("AI体测")] SportsTesting = 4, /// /// 速度跳绳 /// [Description("速度跳绳")] FastJumpRope = 5 } }