CRUD Leave Beginning
Some checks failed
release-dev / release-dev (push) Failing after 11s

This commit is contained in:
Suphonchai Phoonsawat 2025-04-23 11:25:12 +07:00
parent b4c169be75
commit 19c30e69df
12 changed files with 3535 additions and 2 deletions

View file

@ -147,6 +147,12 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnOrder(101)
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<string>("FirstName")
.HasColumnType("longtext");
b.Property<string>("LastName")
.HasColumnType("longtext");
b.Property<string>("LastUpdateFullName")
.IsRequired()
.HasMaxLength(200)
@ -168,7 +174,11 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
b.Property<double>("LeaveDays")
.HasColumnType("double")
.HasComment("จำนวนวันลา");
.HasComment("จำนวนวันลายกมา");
b.Property<double>("LeaveDaysUsed")
.HasColumnType("double")
.HasComment("จำนวนวันลาที่ใช้ไป");
b.Property<Guid>("LeaveTypeId")
.HasColumnType("char(36)")
@ -178,6 +188,9 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnType("int")
.HasComment("ปีงบประมาณ");
b.Property<string>("Prefix")
.HasColumnType("longtext");
b.Property<Guid>("ProfileId")
.HasColumnType("char(36)")
.HasComment("รหัส Profile ในระบบทะเบียนประวัติ");