using NPP.SmartSchedue.Api.Contracts.Core.Enums; namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input; public class PersonnelGroupGetPageInput { public string GroupName { get; set; } = ""; /// /// 人员组类型 /// public PersonnelGroupTypeEnum? GroupType { get; set; } /// /// 是否启用 /// public bool? IsEnabled { get; set; } }