16 lines
438 B
C#
16 lines
438 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using NPP.SmartSchedue.Api.Contracts.Core.Enums;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input;
|
|
|
|
/// <summary>
|
|
/// 更新人员组输入
|
|
/// </summary>
|
|
public class PersonnelGroupUpdateInput : PersonnelGroupCreateInput
|
|
{
|
|
/// <summary>
|
|
/// 人员组ID
|
|
/// </summary>
|
|
[Required(ErrorMessage = "人员组ID不能为空")]
|
|
public long Id { get; set; }
|
|
} |