fix defect and add new api
This commit is contained in:
parent
576c43749a
commit
019a400028
7 changed files with 1180 additions and 6 deletions
|
|
@ -208,6 +208,10 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|||
.HasColumnOrder(101)
|
||||
.HasComment("User Id ที่สร้างข้อมูล");
|
||||
|
||||
b.Property<string>("Dear")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เรียนใคร");
|
||||
|
||||
b.Property<bool>("HajjDayStatus")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
|
|
@ -309,6 +313,10 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|||
b.Property<double>("LeaveTotal")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<string>("LeaveTypeCode")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("code ของประเภทการลา");
|
||||
|
||||
b.Property<string>("LeaveWrote")
|
||||
.IsRequired()
|
||||
.HasColumnType("longtext")
|
||||
|
|
@ -340,6 +348,18 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|||
b.Property<bool>("OrdainDayStatus")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<string>("OrganizationName")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("สังกัดผู้ยื่นขอ");
|
||||
|
||||
b.Property<string>("PositionLevelName")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("ระดับผู้ยื่นขอ");
|
||||
|
||||
b.Property<string>("PositionName")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("ตำแหน่งผู้ยื่นขอ");
|
||||
|
||||
b.Property<double>("RestDayCurrentTotal")
|
||||
.HasColumnType("double");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue