using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.User;
///
/// 获取用户列表输入.
///
[SuppressSniffer]
public class UserConditionInput
{
///
/// 部门id.
///
public List departIds { get; set; } = new List();
///
/// 岗位id.
///
public List positionIds { get; set; } = new List();
///
/// 用户id.
///
public List userIds { get; set; } = new List();
///
/// 角色Id.
///
public List roleIds { get; set; } = new List();
///
/// 分组Id.
///
public List groupIds { get; set; } = new List();
///
/// 分页和搜索.
///
public PageInputBase pagination { get; set; }
///
/// 分类 ( 组织标识:Organize , 岗位标识:Position , 角色标识:Role , 分组:Group ).
///
public string type { get; set; }
}