report leave

This commit is contained in:
kittapath 2024-12-12 00:00:43 +07:00
parent 2510009cc6
commit 348da62370
3 changed files with 461 additions and 188 deletions

View file

@ -0,0 +1,12 @@
namespace BMA.EHR.Leave.Service.DTOs.Reports
{
public class GetLeaveDetailByNodeReportDto
{
public DateTime StartDate { get; set; } = DateTime.MinValue;
public DateTime EndDate { get; set; } = DateTime.MinValue;
public string? node { get; set; } = string.Empty;
public string? nodeId { get; set; } = string.Empty;
}
}