using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// T_Sys_RoleFunction:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_RoleFunction
{
public T_Sys_RoleFunction()
{ }
#region Model
private int _f_roleid;
private int _f_functionid;
private int? _f_iskey;
///
/// 角色id外键
///
public int F_RoleId
{
set { _f_roleid = value; }
get { return _f_roleid; }
}
///
/// 功能id外键
///
public int F_FunctionId
{
set { _f_functionid = value; }
get { return _f_functionid; }
}
///
/// 是否为快捷操作(每个角色的快捷操作不能超过4项)(0:否,1:是)默认0
///
public int? F_IsKey
{
set { _f_iskey = value; }
get { return _f_iskey; }
}
#endregion Model
}
}