fix defect and add new api

This commit is contained in:
Suphonchai Phoonsawat 2024-01-08 09:31:56 +07:00
parent 576c43749a
commit 019a400028
7 changed files with 1180 additions and 6 deletions

View file

@ -114,5 +114,15 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public DateTime CoupleDayEndDateHistory { get; set; } = DateTime.Now;
public string CoupleDaySumTotalHistory { get; set; } = string.Empty;
public string? Dear { get; set; } = string.Empty;
public string? LeaveTypeCode { get; set; } = string.Empty;
public string? PositionName { get; set; } = string.Empty;
public string? PositionLevelName { get; set; } = string.Empty;
public string? OrganizationName { get; set; } = string.Empty;
}
}