18 lines
441 B
C#
18 lines
441 B
C#
using NPP.SmartSchedue.Api.Contracts.Core.Enums;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input;
|
|
|
|
public class PersonnelGroupGetPageInput
|
|
{
|
|
public string GroupName { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 人员组类型
|
|
/// </summary>
|
|
public PersonnelGroupTypeEnum? GroupType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public bool? IsEnabled { get; set; }
|
|
} |