2023-11-30 10:15:44 +07:00
|
|
|
|
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GetLeaveRequestForAdminResultDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string LeaveTypeName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-04-09 16:05:07 +07:00
|
|
|
|
public string? LeaveSubTypeName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2023-11-30 10:15:44 +07:00
|
|
|
|
public Guid LeaveTypeId { get; set; } = Guid.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime DateSendLeave { get; set; } = DateTime.MinValue;
|
|
|
|
|
|
|
2024-01-17 12:42:19 +07:00
|
|
|
|
public string Status { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string CitizenId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime LeaveStartDate { get; set; } = DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime LeaveEndDate { get; set; } = DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
|
|
public string Agency { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string Org { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string Position { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string Level { get; set; } = string.Empty;
|
2024-01-23 12:39:35 +07:00
|
|
|
|
|
|
|
|
|
|
public string LeaveRange { get; set; } = string.Empty;
|
2024-08-01 13:41:35 +07:00
|
|
|
|
|
2025-04-22 10:51:58 +07:00
|
|
|
|
public string LeaveRangeEnd { get; set; } = string.Empty;
|
|
|
|
|
|
|
2024-08-01 13:41:35 +07:00
|
|
|
|
public bool? HajjDayStatus { get; set; }
|
2025-03-06 10:24:56 +07:00
|
|
|
|
|
|
|
|
|
|
public string? ProfileType { get; set; }
|
2026-01-26 22:58:37 +07:00
|
|
|
|
|
|
|
|
|
|
public double LeaveTotal { get; set; }
|
2023-11-30 10:15:44 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|