แก้ไข /leave/user/check

เพิ่ม range and rangeEnd เพื่อตรวจสอบการลา เพื่อให้สามารถลาครึ่งวัน รวมกับลาเต็มวันได้
This commit is contained in:
Suphonchai Phoonsawat 2025-04-22 10:39:17 +07:00
parent cd54079a47
commit 3659d03d94
6 changed files with 1590 additions and 3 deletions

View file

@ -12,5 +12,11 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
[Required]
public DateTime EndLeaveDate { get; set;} = DateTime.MinValue;
[Required]
public string LeaveRange { get; set; } = "ALL";
[Required]
public string LeaveRangeEnd { get; set; } = "ALL";
}
}