using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
using System.Web.Mvc.Html;
using System.Web.Mvc;
namespace QMAPP.Web.Models.Report
{
///
/// 权限查询模型
///
public class AuthorityModel :QDGModel
{
public AuthorityModel()
{
rownumbers = false;
checkbox = false;
ImmediateSearch = false;
}
///
/// 姓名
///
[Description("姓名")]
[DGColumn(frozenColumns = true,Sortable=true, Width = 200)]
public string USERNAME { get; set; }
///
/// 登录名
///
[Description("登录名")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
public string LOGINUSERID { get; set; }
///
///用户主键
///
[Description("用户主键")]
[InputType(inputType.hidden)]
public string USERID { get; set; }
///
/// 组织机构
///
[Description("组织机构")]
[InputType(inputType.hidden)]
public string ORGANID { get; set; }
///
/// 组织机构
///
[Description("组织机构")]
[HTMLInput(UpdateRead = true)]
[InputType(inputType.text)]
[DGColumn(Width = 200, Sortable = true)]
public string ORGANNAME { get; set; }
///
/// 角色
///
[Description("角色")]
[DGColumn(Width = 200, Sortable = true)]
public string ROLENAME { get; set; }
///
/// 权限
///
[Description("权限")]
[DGColumn(Width = 200, Sortable = true)]
public string AUTHORITYNAME { get; set; }
}
}