api รายงาน + Reopen Issue
This commit is contained in:
parent
d5a78f2d0f
commit
48892556fd
10 changed files with 662 additions and 10 deletions
|
|
@ -29,5 +29,13 @@
|
|||
public double? CheckOutLon { get; set; } = 0;
|
||||
|
||||
public string? CheckOutStatus { get; set; } = string.Empty;
|
||||
|
||||
public bool CheckInIsLocation { get; set; } = false;
|
||||
|
||||
public string? CheckInLocationName { get; set; } = string.Empty;
|
||||
|
||||
public bool CheckOutIsLocation { get; set; } = false;
|
||||
|
||||
public string? CheckOutLocationName { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
namespace BMA.EHR.Leave.Service.DTOs.Reports
|
||||
{
|
||||
public class GetLeaveDetailReportDto
|
||||
{
|
||||
public DateTime StartDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
public DateTime EndDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
}
|
||||
}
|
||||
12
BMA.EHR.Leave.Service/DTOs/Reports/GetLeaveReportDto.cs
Normal file
12
BMA.EHR.Leave.Service/DTOs/Reports/GetLeaveReportDto.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace BMA.EHR.Leave.Service.DTOs.Reports
|
||||
{
|
||||
public class GetLeaveReportDto
|
||||
{
|
||||
public string? Type { get; set; } = "FULL";
|
||||
|
||||
public DateTime StartDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
public DateTime EndDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue