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.
28 lines
590 B
28 lines
590 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.Entity.Report
|
|
{
|
|
/// <summary>
|
|
/// 用户权限报表查询条件
|
|
/// </summary>
|
|
public class PowerQyCondition
|
|
{
|
|
/// <summary>
|
|
/// 组织机构
|
|
/// </summary>
|
|
public string ORGANID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 登录名
|
|
/// </summary>
|
|
public string LOGINUSERID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户主键
|
|
/// </summary>
|
|
public string USERID { get; set; }
|
|
}
|
|
}
|
|
|