บันทึกเงินเดือนของผู้บรรจุ

This commit is contained in:
Suphonchai Phoonsawat 2023-09-02 13:53:56 +07:00
parent 69bd9c0a68
commit bb9a0bc73e
6 changed files with 16338 additions and 6 deletions

View file

@ -463,6 +463,10 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<double?>("Amount")
.HasColumnType("double")
.HasComment("เงินเดือน");
b.Property<string>("CitizenId")
.IsRequired()
.HasMaxLength(13)
@ -528,6 +532,14 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasColumnOrder(102)
.HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
b.Property<double?>("MouthSalaryAmount")
.HasColumnType("double")
.HasComment("เงินค่าตอบแทนรายเดือน");
b.Property<double?>("PositionSalaryAmount")
.HasColumnType("double")
.HasComment("เงินประจำตำแหน่ง");
b.Property<string>("Prefix")
.IsRequired()
.HasMaxLength(50)