Add Field to ProfileSAlary

This commit is contained in:
Suphonchai Phoonsawat 2023-08-08 10:35:48 +07:00
parent 1a7be19e33
commit aff4dcd38d
6 changed files with 12762 additions and 1 deletions

View file

@ -4403,6 +4403,16 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnType("double")
.HasComment("เงินเดือน");
b.Property<string>("CommandNo")
.IsRequired()
.HasColumnType("longtext")
.HasComment("เลขที่คำสั่ง");
b.Property<string>("CommandTypeName")
.IsRequired()
.HasColumnType("longtext")
.HasComment("ประเภทคำสั่ง");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime(6)")
.HasColumnOrder(100)