using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Entity.Enum
{
///
/// 成绩等级
///
public enum AchievementRank
{
///
/// 优秀
///
[Description("优秀")]
Excellent = 1,
///
/// 良好
///
[Description("良好")]
Fine = 2,
///
/// 及格
///
[Description("及格")]
Pass =3,
///
/// 不及格
///
[Description("不及格")]
Fail = 4
}
}