โอนคนสรรหาไปบรรจุ

This commit is contained in:
Kittapath 2023-07-26 18:45:04 +07:00
parent 40836767ad
commit e55c0f746b
10 changed files with 35615 additions and 17 deletions

View file

@ -9621,7 +9621,7 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("varchar(1000)")
.HasComment("ระยะเวลา");
b.Property<int>("DurationYear")
b.Property<int?>("DurationYear")
.HasColumnType("int")
.HasComment("ระยะเวลาหลักสูตร");
@ -9852,11 +9852,11 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("varchar(200)")
.HasComment("อีเมล");
b.Property<int>("ExamNumber")
b.Property<int?>("ExamNumber")
.HasColumnType("int")
.HasComment("ลำดับที่สอบได้");
b.Property<int>("ExamRound")
b.Property<int?>("ExamRound")
.HasColumnType("int")
.HasComment("จำนวนครั้งที่สมัครสอบ");
@ -9957,8 +9957,8 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("char(36)");
b.Property<string>("MobilePhone")
.HasMaxLength(20)
.HasColumnType("varchar(20)")
.HasMaxLength(200)
.HasColumnType("varchar(200)")
.HasComment("โทรศัพท์มือถือ");
b.Property<string>("MotherFirstName")
@ -10011,8 +10011,8 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasComment("ตำแหน่งอาชีพ");
b.Property<string>("OccupationTelephone")
.HasMaxLength(20)
.HasColumnType("varchar(20)")
.HasMaxLength(200)
.HasColumnType("varchar(200)")
.HasComment("โทรศัพท์ บริษัท");
b.Property<string>("OccupationType")
@ -10147,8 +10147,8 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasComment("เอกสารอ้างอิง");
b.Property<string>("Telephone")
.HasMaxLength(20)
.HasColumnType("varchar(20)")
.HasMaxLength(200)
.HasColumnType("varchar(200)")
.HasComment("โทรศัพท์");
b.HasKey("Id");