using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.SysDto
{
public class FunctionMenuDto
{
public string ParentId { get; set; }
public string title { get; set; }
public bool @checked { get; set; }
public bool LAY_CHECKED { get; set; }
public bool Expand { get; set; }
public string RoleNo { get; set; }
///
/// Id
///
//public int Id { get; set; }
///
/// 菜单号
///
public string MenuNo { get; set; }
///
/// 名称
///
public string MenuName { get; set; }
///
/// 父级菜单号
///
public string ParentNo { get; set; }
///
/// 显示顺序
///
public string Ord { get; set; }
///
/// 页面地址
///
public string Url { get; set; }
///
/// 层级
///
public string Level { get; set; }
///
/// 备注
///
public string Demo { get; set; }
///
/// 创建人
///
public int CreateUser { get; set; }
///
/// 更改人
///
public int UpdateUser { get; set; }
public List children { get; set; }
//public int UpdateUser { get; set; }
}
}