แก้บันทึกพ้นราชการ (ยังไม่เสร็จ)
This commit is contained in:
parent
e55c0f746b
commit
2e7abdb60a
13 changed files with 12478 additions and 189 deletions
|
|
@ -6534,7 +6534,7 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
||||
b.Property<bool>("IsActive")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasColumnOrder(2)
|
||||
.HasColumnOrder(3)
|
||||
.HasComment("สถานะการใช้งาน");
|
||||
|
||||
b.Property<string>("LastUpdateFullName")
|
||||
|
|
@ -6560,9 +6560,14 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("varchar(100)")
|
||||
.HasColumnOrder(1)
|
||||
.HasColumnOrder(2)
|
||||
.HasComment("ชื่อระดับชั้นงานข้อมูลตำแหน่งของลูกจ้างกรุงเทพ");
|
||||
|
||||
b.Property<int?>("Order")
|
||||
.HasColumnType("int")
|
||||
.HasColumnOrder(1)
|
||||
.HasComment("ลำดับ");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("PositionEmployeeLevels");
|
||||
|
|
@ -7000,7 +7005,7 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
||||
b.Property<bool>("IsActive")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasColumnOrder(4)
|
||||
.HasColumnOrder(5)
|
||||
.HasComment("สถานะการใช้งาน");
|
||||
|
||||
b.Property<string>("LastUpdateFullName")
|
||||
|
|
@ -7024,21 +7029,26 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
||||
b.Property<int>("Level")
|
||||
.HasColumnType("int")
|
||||
.HasColumnOrder(3)
|
||||
.HasColumnOrder(4)
|
||||
.HasComment("ลำดับชั้นของระดับตำแหน่ง");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("varchar(100)")
|
||||
.HasColumnOrder(1)
|
||||
.HasColumnOrder(2)
|
||||
.HasComment("ชื่อระดับตำแหน่ง");
|
||||
|
||||
b.Property<int?>("Order")
|
||||
.HasColumnType("int")
|
||||
.HasColumnOrder(1)
|
||||
.HasComment("ลำดับ");
|
||||
|
||||
b.Property<string>("ShortName")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("varchar(100)")
|
||||
.HasColumnOrder(2)
|
||||
.HasColumnOrder(3)
|
||||
.HasComment("ชื่อย่อระดับตำแหน่ง");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
|
@ -7344,7 +7354,7 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
||||
b.Property<bool>("IsActive")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasColumnOrder(2)
|
||||
.HasColumnOrder(3)
|
||||
.HasComment("สถานะการใช้งาน");
|
||||
|
||||
b.Property<string>("LastUpdateFullName")
|
||||
|
|
@ -7370,9 +7380,14 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("varchar(100)")
|
||||
.HasColumnOrder(1)
|
||||
.HasColumnOrder(2)
|
||||
.HasComment("ชื่อประเภทตำแหน่ง");
|
||||
|
||||
b.Property<int?>("Order")
|
||||
.HasColumnType("int")
|
||||
.HasColumnOrder(1)
|
||||
.HasComment("ลำดับ");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("PositionTypes");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue