天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

79 lines
2.0 KiB

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
{
/// <summary>
/// 权限查询模型
/// </summary>
public class AuthorityModel :QDGModel
{
public AuthorityModel()
{
rownumbers = false;
checkbox = false;
ImmediateSearch = false;
}
/// <summary>
/// 姓名
/// </summary>
[Description("姓名")]
[DGColumn(frozenColumns = true,Sortable=true, Width = 200)]
public string USERNAME { get; set; }
/// <summary>
/// 登录名
/// </summary>
[Description("登录名")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
public string LOGINUSERID { get; set; }
/// <summary>
///用户主键
/// </summary>
[Description("用户主键")]
[InputType(inputType.hidden)]
public string USERID { get; set; }
/// <summary>
/// 组织机构
/// </summary>
[Description("组织机构")]
[InputType(inputType.hidden)]
public string ORGANID { get; set; }
/// <summary>
/// 组织机构
/// </summary>
[Description("组织机构")]
[HTMLInput(UpdateRead = true)]
[InputType(inputType.text)]
[DGColumn(Width = 200, Sortable = true)]
public string ORGANNAME { get; set; }
/// <summary>
/// 角色
/// </summary>
[Description("角色")]
[DGColumn(Width = 200, Sortable = true)]
public string ROLENAME { get; set; }
/// <summary>
/// 权限
/// </summary>
[Description("权限")]
[DGColumn(Width = 200, Sortable = true)]
public string AUTHORITYNAME { get; set; }
}
}