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