fix: insignia + leave Error

This commit is contained in:
Suphonchai Phoonsawat 2024-07-10 10:46:26 +07:00
parent 41d28c4d7f
commit 7d8a80e9df
72 changed files with 132 additions and 142 deletions

View file

@ -1,41 +0,0 @@
namespace BMA.EHR.Leave.Service.DTOs.AdditionalCheck
{
public class GetAdditionalCheckRequestDto
{
public Guid Id { get; set; }
public string FullName { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime CheckDate { get; set; }
public bool CheckInEdit { get; set; }
public bool CheckOutEdit { get; set; }
public string CheckInTime { get; set; }
public string CheckOutTime { get; set; }
public string? CheckInStatus { get; set; }
public string? CheckOutStatus { get; set; }
public string StartTimeMorning { get; set; }
public string EndTimeMorning { get; set; }
public string StartTimeAfternoon { get; set; }
public string EndTimeAfternoon { get; set; }
public string Reason { get; set; }
public string Status { get; set; }
public string Description { get; set; }
public int StatusSort { get; set; } = 0;
}
}