LV1_018 - รายการลงเวลากรณีพิเศษ (ADMIN)

This commit is contained in:
Suphonchai Phoonsawat 2023-11-24 12:25:03 +07:00
parent e76d994098
commit a8379303f9
8 changed files with 761 additions and 5 deletions

View file

@ -0,0 +1,41 @@
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;
}
}