ส่งออกข้อมูลผู้มิสิทธื์สอบ
ส่งออกข้อมูลผู้สอบผ่านภาค ก.
This commit is contained in:
Suphonchai Phoonsawat 2023-04-25 13:13:27 +07:00
parent b8109e80ac
commit b1f8c78ced
34 changed files with 5935 additions and 8 deletions

View file

@ -161,6 +161,9 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("PositionName")
.HasColumnType("longtext");
b.Property<string>("Prefix")
.IsRequired()
.HasMaxLength(50)
@ -593,6 +596,11 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<DateTime?>("AnnouncementDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(14)
.HasComment("วันที่ประกาศผลสอบ");
b.Property<DateTime?>("AnnouncementEndDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(7)
@ -1002,6 +1010,21 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<string>("AStatus")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<string>("BStatus")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<string>("CStatus")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime(6)")
.HasColumnOrder(100)