32 lines
584 B
C#
32 lines
584 B
C#
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
|
|
}
|
|
}
|