migrate + ปรับระบบสรรหาสอบคัดเลือก

This commit is contained in:
harid 2025-11-17 16:17:59 +07:00
parent 577c7b289e
commit f20abe032d
19 changed files with 6470 additions and 15 deletions

View file

@ -624,8 +624,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
.HasColumnType("longtext")
.HasComment("ตำแหน่งปัจจุบัน ประเภทราชการ");
b.Property<int?>("OccupationSalary")
.HasColumnType("int")
b.Property<double?>("OccupationSalary")
.HasColumnType("double")
.HasComment("ตำแหน่งปัจจุบัน เงินเดือน");
b.Property<string>("OccupationTelephone")
@ -2284,6 +2284,10 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
.HasColumnType("float")
.HasComment("ค่าธรรมเนียม");
b.Property<int?>("GraduationYearLock")
.HasColumnType("int")
.HasComment("ล็อกวันที่สำเร็จการศึกษา (ปี)");
b.Property<Guid?>("ImportFileId")
.HasColumnType("char(36)");
@ -2673,6 +2677,11 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
.HasColumnOrder(101)
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<string>("EducationLevel")
.HasMaxLength(50)
.HasColumnType("varchar(50)")
.HasComment("ขีดจำกัดวุฒิการศึกษา");
b.Property<bool>("HighDegree")
.HasColumnType("tinyint(1)")
.HasComment("ปริญญาบัตรขึ้นไป");