Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Classes/SchoolGradeModel.cs

24 lines
500 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UserCenter.Model.Common;
namespace LearningOfficer.OA.Common.Dtos.Classes
{
public class SchoolGradeModel : GradeModel
{
/// <summary>
/// 年级显示名称
/// </summary>
public string GradeDisplayName
{
get
{
return GradeHelper.GetGrade(GradeLevel, GradeYear);
}
}
}
}