hrms-api-backend/BMA.EHR.Application/Responses/Leaves/GetSumApproveLeaveByRootDto.cs

44 lines
2 KiB
C#
Raw Normal View History

2024-12-13 11:52:58 +07:00
namespace BMA.EHR.Application.Responses.Leaves
{
public class GetSumApproveLeaveByRootDto
{
public string Root { get; set; } = string.Empty;
public double SumLeaveDay { get; set; }
public double sickDayCountMale { get; set; }
public double maternityDayCountMale { get; set; }
public double wifeDayCountMale { get; set; }
public double personalDayCountMale { get; set; }
public double restDayCountMale { get; set; }
public double ordainDayCountMale { get; set; }
public double absentDayCountMale { get; set; }
public double studyDayCountMale { get; set; }
public double agencyDayCountMale { get; set; }
public double coupleDayCountMale { get; set; }
public double therapyDayCountMale { get; set; }
public double sickDayCountFemale { get; set; }
public double maternityDayCountFemale { get; set; }
public double wifeDayCountFemale { get; set; }
public double personalDayCountFemale { get; set; }
public double restDayCountFemale { get; set; }
public double ordainDayCountFemale { get; set; }
public double absentDayCountFemale { get; set; }
public double studyDayCountFemale { get; set; }
public double agencyDayCountFemale { get; set; }
public double coupleDayCountFemale { get; set; }
public double therapyDayCountFemale { get; set; }
public double sickDayCountNo { get; set; }
public double maternityDayCountNo { get; set; }
public double wifeDayCountNo { get; set; }
public double personalDayCountNo { get; set; }
public double restDayCountNo { get; set; }
public double ordainDayCountNo { get; set; }
public double absentDayCountNo { get; set; }
public double studyDayCountNo { get; set; }
public double agencyDayCountNo { get; set; }
public double coupleDayCountNo { get; set; }
public double therapyDayCountNo { get; set; }
}
}