添加项目文件。
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using JNPF.Common.Filter;
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Systems.Entitys.Dto.Position;
|
||||
|
||||
/// <summary>
|
||||
/// 获取岗位列表输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class PositionConditionInput : KeywordInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 部门id.
|
||||
/// </summary>
|
||||
public List<string> departIds { get; set; } = new List<string>();
|
||||
|
||||
/// <summary>
|
||||
/// 岗位id.
|
||||
/// </summary>
|
||||
public List<string> positionIds { get; set; } = new List<string>();
|
||||
}
|
||||
Reference in New Issue
Block a user