Files
tnb.server/extend/Tnb.Extend.Entitys/Dto/Employee/EmployeeListQuery.cs
2023-03-13 15:00:34 +08:00

28 lines
561 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Employee;
/// <summary>
/// 获取职员列表(分页).
/// </summary>
[SuppressSniffer]
public class EmployeeListQuery : PageInputBase
{
/// <summary>
/// 查询内容.
/// </summary>
public string? condition { get; set; }
/// <summary>
/// 查询字段.
/// </summary>
public string? selectKey { get; set; }
/// <summary>
/// 是否分页0分页.
/// </summary>
public string? dataType { get; set; }
}