using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Employee;
///
/// 获取职员列表(分页).
///
[SuppressSniffer]
public class EmployeeListQuery : PageInputBase
{
///
/// 查询内容.
///
public string? condition { get; set; }
///
/// 查询字段.
///
public string? selectKey { get; set; }
///
/// 是否分页(0:分页).
///
public string? dataType { get; set; }
}