YD_SmartSports.Api/VOL.Entity/Enum/AchievementRank.cs

32 lines
584 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Entity.Enum
{
/// <summary>
/// 成绩等级
/// </summary>
public enum AchievementRank
{
/// <summary>
/// 优秀
/// </summary>
Excellent= 1,
/// <summary>
/// 良好
/// </summary>
Fine = 2,
/// <summary>
/// 及格
/// </summary>
Pass=3,
/// <summary>
/// 未及格
/// </summary>
Fail = 4
}
}