天津投入产出系统后端
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.
 
 
 
 
 
 

58 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.Entity.Report
{
/// <summary>
/// 用户权限查询结果
/// </summary>
public class PowerQueryResult
{
/// <summary>
/// 用户主键
/// </summary>
public string USERID { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string USERNAME { get; set; }
/// <summary>
/// 登录名
/// </summary>
public string LOGINUSERID { get; set; }
/// <summary>
/// 组织机构主键
/// </summary>
public string ORGANID { get; set; }
/// <summary>
/// 组织机构
/// </summary>
public string ORGANNAME { get; set; }
/// <summary>
/// 角色主键
/// </summary>
public string ROLEID { get; set; }
/// <summary>
/// 角色
/// </summary>
public string ROLENAME { get; set; }
/// <summary>
/// 权限主键
/// </summary>
public string AUTHORITYID { get; set; }
/// <summary>
/// 权限
/// </summary>
public string AUTHORITYNAME { get; set; }
}
}