add field to support cms and change sum api

This commit is contained in:
Suphonchai Phoonsawat 2023-04-23 12:00:07 +07:00
parent 6d9f252f1a
commit b8109e80ac
16 changed files with 2132 additions and 23 deletions

View file

@ -593,6 +593,16 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<DateTime?>("AnnouncementEndDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(7)
.HasComment("วันสิ้นสุดประกาศ");
b.Property<DateTime?>("AnnouncementStartDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(6)
.HasComment("วันเริ่มประกาศ");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime(6)")
.HasColumnOrder(100)
@ -612,6 +622,21 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasColumnOrder(101)
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<string>("Detail")
.HasColumnType("text")
.HasColumnOrder(4)
.HasComment("รายละเอียด");
b.Property<DateTime?>("ExamDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(12)
.HasComment("วันที่สอบ");
b.Property<int>("Fee")
.HasColumnType("int")
.HasColumnOrder(5)
.HasComment("ค่าธรรมเนียม");
b.Property<Guid>("ImportFileId")
.HasColumnType("char(36)");
@ -639,17 +664,42 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasMaxLength(250)
.HasColumnType("varchar(250)")
.HasColumnOrder(2)
.HasComment("ชื่อการสอบ");
.HasComment("รอบการสอบ");
b.Property<string>("Note")
.HasColumnType("text")
.HasColumnOrder(13)
.HasComment("หมายเหตุ");
b.Property<int>("Order")
.HasColumnType("int")
.HasColumnOrder(3)
.HasComment("ครั้งที่");
b.Property<DateTime?>("PaymentEndDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(9)
.HasComment("วันสิ้นสุดชำระเงิน");
b.Property<DateTime?>("PaymentStartDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(8)
.HasComment("วันเริ่มชำระเงิน");
b.Property<DateTime?>("RegisterEndDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(11)
.HasComment("วันสิ้นสุดสมัครสอบ");
b.Property<DateTime?>("RegisterStartDate")
.HasColumnType("datetime(6)")
.HasColumnOrder(10)
.HasComment("วันเริ่มสมัครสอบ");
b.Property<int>("Year")
.HasColumnType("int")
.HasColumnOrder(1)
.HasComment("ปีที่จัดการสอบ");
.HasComment("ปีงบประมาณที่จัดสอบ");
b.HasKey("Id");