change LeaveTotal to Double

This commit is contained in:
Suphonchai Phoonsawat 2023-12-21 14:30:10 +07:00
parent d7be2da281
commit 7ce1b11244
8 changed files with 1085 additions and 24 deletions

View file

@ -39,9 +39,9 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
public string WifeDayDateBorn { get; set; } = string.Empty;
public int RestDayOldTotal { get; set; } = 0;
public double RestDayOldTotal { get; set; } = 0;
public int RestDayCurrentTotal { get; set; } = 0;
public double RestDayCurrentTotal { get; set; } = 0;
public bool OrdainDayStatus { get; set; } = false;
@ -110,7 +110,7 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
[Comment("ความเห็นของผู้อำนวยการสำนัก")]
public string? LeaveDirectorComment { get; set; } = string.Empty;
public int LeaveTotal { get; set; } = 0;
public double LeaveTotal { get; set; } = 0;
public DateTime? LeaveLast { get; set; }