using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
///
/// 权限菜单对应表
///
[Serializable]
public partial class T_Sys_RoleFunction
{
///
///
///
public int F_Id { get; set; }
///
/// 角色id
///
public int F_RoleId { get; set; }
///
/// 功能id
///
public int F_FunctionId { get; set; }
///
/// 类型:1模块,2按钮
///
public int F_FunctionType { get; set; }
}
}