LV1_022 - ประวัติการยื่นขอลงเวลาพิเศษ (USER)

Edit
LV1_007 - ประวัติการลงเวลา (USER)
This commit is contained in:
Suphonchai Phoonsawat 2023-11-29 06:07:57 +07:00
parent 130cbb8042
commit 32686c3e0b
4 changed files with 135 additions and 4 deletions

View file

@ -0,0 +1,27 @@
namespace BMA.EHR.Leave.Service.DTOs.AdditionalCheck
{
public class GetAdditionalCheckRequestHistoryDto
{
public Guid Id { get; set; }
public DateTime CheckInDate { get; set; }
public DateTime CheckOutDate { get; set; }
public string CheckInTime { get; set; }
public string CheckOutTime { get; set; }
public string CheckInLocation { get; set; }
public string CheckOutLocation { get; set; }
public string? CheckInStatus { get; set; }
public string? CheckOutStatus { get; set; }
public string? EditReason { get; set; }
public string? EditStatus { get; set; }
}
}

View file

@ -20,8 +20,10 @@
public string? CheckOutStatus { get; set; } = string.Empty;
public string EditStatus { get; set; } = string.Empty;
//public string EditStatus { get; set; } = string.Empty;
public string EditReason { get; set; } = string.Empty;
//public string EditReason { get; set; } = string.Empty;
public bool IsEdit { get; set; } = false;
}
}