LV1_018 - รายการลงเวลากรณีพิเศษ (ADMIN)

This commit is contained in:
Suphonchai Phoonsawat 2023-11-24 12:25:03 +07:00
parent e76d994098
commit a8379303f9
8 changed files with 761 additions and 5 deletions

View file

@ -68,10 +68,6 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnType("longtext")
.HasComment("*หมายเหตุขอลงเวลาพิเศษ");
b.Property<bool>("IsApproved")
.HasColumnType("tinyint(1)")
.HasComment("สถานะการอนุมัติ");
b.Property<Guid>("KeycloakUserId")
.HasColumnType("char(36)")
.HasComment("รหัส User ของ Keycloak ที่ร้องขอ");
@ -95,6 +91,11 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnOrder(102)
.HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
b.Property<string>("Status")
.IsRequired()
.HasColumnType("longtext")
.HasComment("สถานะการอนุมัติ");
b.HasKey("Id");
b.ToTable("AdditionalCheckRequests");