using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PMS.BusinessModels.SysManager
{
///
/// 创 建 人:王海洋
/// 创建日期:2018-12-10
/// 功能描述:系统菜单结构(暂时未使用)
///
public class SystemMenuModel
{
///
/// ID
///
public string id { get; set; }
///
/// 模块名称
///
public string text { get; set; }
///
/// 是否打开
///
public bool isOpen { get; set; }
///
/// 打开方式
///
public string targetType { get { return "iframe-tab"; } }
///
/// 图标
///
public string icon { get; set; }
public List children { get; set; }
}
}