ไม่ validate วันที่สมัครสอบ
This commit is contained in:
parent
a207e5077c
commit
c11b3b68ae
17 changed files with 3276 additions and 312 deletions
|
|
@ -704,6 +704,11 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasColumnType("varchar(10)")
|
||||
.HasComment("รหัสไปรษณีย์ที่อยู่ตามทะเบียนบ้าน");
|
||||
|
||||
b.Property<DateTime?>("RegisterDate")
|
||||
.HasMaxLength(40)
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasComment("วันที่สมัคร");
|
||||
|
||||
b.Property<string>("RejectDetail")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลการไม่อนุมัติ");
|
||||
|
|
@ -2128,7 +2133,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasComment("PrimaryKey")
|
||||
.HasAnnotation("Relational:JsonPropertyName", "id");
|
||||
|
||||
b.Property<DateTime>("AnnouncementDate")
|
||||
b.Property<DateTime?>("AnnouncementDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(5)
|
||||
.HasComment("วันประกาศผลสอบ");
|
||||
|
|
@ -2182,7 +2188,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("รายละเอียดสมัครสอบ");
|
||||
|
||||
b.Property<DateTime>("ExamDate")
|
||||
b.Property<DateTime?>("ExamDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasComment("วันที่สอบ");
|
||||
|
||||
|
|
@ -2243,7 +2250,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("ชื่อหน่วยงาน");
|
||||
|
||||
b.Property<DateTime>("PaymentEndDate")
|
||||
b.Property<DateTime?>("PaymentEndDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(4)
|
||||
.HasComment("วันสิ้นสุดชำระเงิน");
|
||||
|
|
@ -2252,17 +2260,20 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("ชำระเงินผ่านกรุงไทย");
|
||||
|
||||
b.Property<DateTime>("PaymentStartDate")
|
||||
b.Property<DateTime?>("PaymentStartDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(3)
|
||||
.HasComment("วันเริ่มชำระเงิน");
|
||||
|
||||
b.Property<DateTime>("RegisterEndDate")
|
||||
b.Property<DateTime?>("RegisterEndDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(2)
|
||||
.HasComment("วันสิ้นสุดสมัครสอบ");
|
||||
|
||||
b.Property<DateTime>("RegisterStartDate")
|
||||
b.Property<DateTime?>("RegisterStartDate")
|
||||
.IsRequired()
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(1)
|
||||
.HasComment("วันเริ่มสมัครสอบ");
|
||||
|
|
@ -2449,6 +2460,10 @@ namespace BMA.EHR.Recurit.Exam.Service.Data.Migrations
|
|||
.HasColumnOrder(101)
|
||||
.HasComment("User Id ที่สร้างข้อมูล");
|
||||
|
||||
b.Property<bool>("HighDegree")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasComment("ปริญญาขึ้นไป");
|
||||
|
||||
b.Property<bool>("IsActive")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasColumnOrder(106)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue