You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Admin.Core.Model.Sys;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class UserQuery : SysUser
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 时间范围
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<DateTime> DateRange { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否开启角色相关查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool RoleQuery { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RoleID { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色包含用户-true
|
|
|
|
|
/// 角色不包含用户-false
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ContainsUser { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|