namespace Edu.Model.ViewModel.System
{
///
/// 系统菜单视图实体类
///
public class RB_Menu_ViewModel : Model.Entity.System.RB_Menu
{
///
/// 菜单类型字符串
///
public string MenuTypeStr
{
get
{
string str = "";
if (this.MenuType > 0)
{
switch (this.MenuType)
{
case 1: str = "管理端"; break;
case 2: str = "教师端"; break;
case 3: str = "助教端"; break;
case 4: str = "学生端"; break;
}
}
return str;
}
}
///
/// 创建时间字符串
///
public string CreateTimeStr { get { return Common.ConvertHelper.FormatTime(this.CreateTime); } }
}
}