天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
580 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace QMAPP.Common.Web.Models
{
/// <summary>
/// 主页模型
/// </summary>
public class DefaultModel
{
/// <summary>
/// 主菜单
/// </summary>
public string MenuHtml { get; set; }
/// <summary>
/// 登录用户姓名
/// </summary>
public string UserDes { get; set; }
/// <summary>
/// 默认菜单
/// </summary>
public string DefaultMenuID { get; set; }
}
}