fix: insignia + leave Error
This commit is contained in:
parent
41d28c4d7f
commit
7d8a80e9df
72 changed files with 132 additions and 142 deletions
37
BMA.EHR.Leave/DTOs/CheckIn/CheckInHistoryDto.cs
Normal file
37
BMA.EHR.Leave/DTOs/CheckIn/CheckInHistoryDto.cs
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
namespace BMA.EHR.Leave.Service.DTOs.CheckIn
|
||||
{
|
||||
public class CheckInHistoryDto
|
||||
{
|
||||
public Guid CheckInId { get; set; } = Guid.Empty;
|
||||
|
||||
public DateTime? CheckInDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
public string? CheckInTime { get; set; } = "00:00";
|
||||
|
||||
public string? CheckInLocation { get; set; } = string.Empty;
|
||||
|
||||
public string? CheckInStatus { get; set; } = string.Empty;
|
||||
|
||||
public bool CheckInIsLocation { get; set; } = false;
|
||||
|
||||
public string? CheckInLocationName { get; set; } = string.Empty;
|
||||
|
||||
public DateTime? CheckOutDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
public string? CheckOutTime { get; set; } = "00:00";
|
||||
|
||||
public string? CheckOutLocation { get; set; } = string.Empty;
|
||||
|
||||
public string? CheckOutStatus { get; set; } = string.Empty;
|
||||
|
||||
public bool CheckOutIsLocation { get; set; } = false;
|
||||
|
||||
public string? CheckOutLocationName { get; set; } = string.Empty;
|
||||
|
||||
//public string EditStatus { get; set; } = string.Empty;
|
||||
|
||||
//public string EditReason { get; set; } = string.Empty;
|
||||
|
||||
public bool IsEdit { get; set; } = false;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue