Asoka.Wang 2b3f9acdce 123
2025-09-22 19:09:47 +08:00

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; }
}