12 lines
268 B
C#
12 lines
268 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Time.Input;
|
|
|
|
/// <summary>
|
|
/// 更新员工休假
|
|
/// </summary>
|
|
public class EmployeeLeaveUpdateInput : EmployeeLeaveAddInput
|
|
{
|
|
/// <summary>
|
|
/// 休假ID
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
} |