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

@ -306,8 +306,8 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnType("longtext")
.HasComment("สถานะของคำร้อง");
b.Property<int>("LeaveTotal")
.HasColumnType("int");
b.Property<double>("LeaveTotal")
.HasColumnType("double");
b.Property<string>("LeaveWrote")
.IsRequired()
@ -340,11 +340,11 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
b.Property<bool>("OrdainDayStatus")
.HasColumnType("tinyint(1)");
b.Property<int>("RestDayCurrentTotal")
.HasColumnType("int");
b.Property<double>("RestDayCurrentTotal")
.HasColumnType("double");
b.Property<int>("RestDayOldTotal")
.HasColumnType("int");
b.Property<double>("RestDayOldTotal")
.HasColumnType("double");
b.Property<string>("StudyDayCountry")
.IsRequired()