api พ้นราชการ

This commit is contained in:
Kittapath 2023-07-25 14:32:02 +07:00
parent b800b9e60d
commit 1c09aa8e23
8 changed files with 12002 additions and 30 deletions

View file

@ -3364,6 +3364,14 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("datetime(6)")
.HasComment("ลงวันที่");
b.Property<DateTime?>("RefCommandDate")
.HasColumnType("datetime(6)")
.HasComment("เอกสารอ้างอิง (ลงวันที่)");
b.Property<string>("RefCommandNo")
.HasColumnType("longtext")
.HasComment("เอกสารอ้างอิง (เลขที่คำสั่ง)");
b.Property<string>("Section")
.HasMaxLength(30)
.HasColumnType("varchar(30)")
@ -10317,6 +10325,10 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("longtext")
.HasComment("ประเภท");
b.Property<int>("Year")
.HasColumnType("int")
.HasComment("ปีงบประมาณ");
b.HasKey("Id");
b.ToTable("RetirementPeriods");
@ -10381,8 +10393,9 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("longtext")
.HasComment("เหตุผล");
b.Property<bool>("Remove")
.HasColumnType("tinyint(1)")
b.Property<string>("Remove")
.IsRequired()
.HasColumnType("longtext")
.HasComment("ลบออกจากเกษียญ");
b.Property<Guid>("RetirementPeriodId")