fix: Leave Performance

This commit is contained in:
Suphonchai Phoonsawat 2024-07-08 10:50:11 +07:00
parent aaa180e217
commit 9c696be46e
4 changed files with 132 additions and 140 deletions

View file

@ -0,0 +1,13 @@
namespace BMA.EHR.Application.Responses.Leaves
{
public class GetCountApproveLeaveByTypeDto
{
public Guid KeycloakUserId { get; set; }
public Guid LeaveTypeId { get; set; }
public string LeaveTypeCode { get; set; } = string.Empty;
public int CountLeave { get; set; }
}
}

View file

@ -0,0 +1,13 @@
namespace BMA.EHR.Application.Responses.Leaves
{
public class GetSumApproveLeaveByTypeDto
{
public Guid KeycloakUserId { get; set; }
public Guid LeaveTypeId { get; set; }
public string LeaveTypeCode { get; set; } = string.Empty;
public double SumLeaveDay { get; set; }
}
}