แก้สืบสอบ status เพิ่มdefult

This commit is contained in:
Kittapath 2023-12-01 09:46:39 +07:00
parent dd4a409855
commit 49d70b1e05
16 changed files with 34059 additions and 3 deletions

View file

@ -533,6 +533,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("int")
.HasComment("จำนวนวันที่ขยาย");
b.Property<bool>("DisciplinaryExtendStatus")
.HasColumnType("tinyint(1)")
.HasComment("ขยายเวลา");
b.Property<string>("DisciplinaryFaultLevel")
.HasColumnType("longtext")
.HasComment("ระดับโทษความผิด กรณีไม่ร้ายแรง: ภาคทัณฑ์, ตัดเงินเดือน, ลดขั้นเงินเดือน | กรณีร้ายแรง: ปลดออก, ไล่ออก");
@ -580,6 +584,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("datetime(6)")
.HasComment("วันที่เริ่มการสืบสวน");
b.Property<int?>("InvestigationDaysExtend")
.HasColumnType("int")
.HasComment("จำนวนวันที่ต้องการขยาย");
b.Property<string>("InvestigationDescription")
.HasColumnType("longtext")
.HasComment("รายละเอียดเกี่ยวกับการสืบสวน");
@ -592,6 +600,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("longtext")
.HasComment("ลักษณะการสืบสวนกรณีเลือกอื่นๆ");
b.Property<bool>("InvestigationExtendStatus")
.HasColumnType("tinyint(1)")
.HasComment("ขยายเวลา");
b.Property<string>("InvestigationStatusResult")
.HasColumnType("longtext")
.HasComment("สถานะหรือผลการสืบสวน (NOT_SPECIFIED คือ ยังไม่ระบุ, HAVE_CAUSE คือ มีมูล, NO_CAUSE คือ ไม่มีมูล");
@ -1409,6 +1421,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("datetime(6)")
.HasComment("วันที่เริ่มการสืบสวน");
b.Property<int?>("InvestigationDaysExtend")
.HasColumnType("int")
.HasComment("จำนวนวันที่ต้องการขยาย");
b.Property<string>("InvestigationDescription")
.HasColumnType("longtext")
.HasComment("รายละเอียดเกี่ยวกับการสืบสวน");
@ -1421,6 +1437,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("longtext")
.HasComment("ลักษณะการสืบสวนกรณีเลือกอื่นๆ");
b.Property<bool>("InvestigationExtendStatus")
.HasColumnType("tinyint(1)")
.HasComment("ขยายเวลา");
b.Property<string>("InvestigationStatusResult")
.HasColumnType("longtext")
.HasComment("สถานะหรือผลการสืบสวน (not_specified คือ ยังไม่ระบุ, have_cause คือ มีมูล, no_cause คือ ไม่มีมูล");