no message
This commit is contained in:
parent
63b02dcc4c
commit
afe16503ee
17 changed files with 36169 additions and 139 deletions
|
|
@ -12594,8 +12594,9 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
b.Property<Guid?>("AvatarId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<Guid?>("BloodGroupId")
|
||||
.HasColumnType("char(36)");
|
||||
b.Property<string>("BloodGroup")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("Id กลุ่มเลือด");
|
||||
|
||||
b.Property<DateTime>("CreatedAt")
|
||||
.HasColumnType("datetime(6)")
|
||||
|
|
@ -12625,8 +12626,9 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("วุฒิ/สาขาเดิม");
|
||||
|
||||
b.Property<Guid?>("GenderId")
|
||||
.HasColumnType("char(36)");
|
||||
b.Property<string>("Gender")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("Id เพศ");
|
||||
|
||||
b.Property<bool>("IsActive")
|
||||
.HasColumnType("tinyint(1)")
|
||||
|
|
@ -12689,11 +12691,13 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลที่รับโอนราชการ");
|
||||
|
||||
b.Property<Guid?>("RelationshipId")
|
||||
.HasColumnType("char(36)");
|
||||
b.Property<string>("Relationship")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("Id สถานะภาพ");
|
||||
|
||||
b.Property<Guid?>("ReligionId")
|
||||
.HasColumnType("char(36)");
|
||||
b.Property<string>("Religion")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("Id ศาสนา");
|
||||
|
||||
b.Property<DateTime?>("ReportingDate")
|
||||
.HasColumnType("datetime(6)")
|
||||
|
|
@ -12921,14 +12925,6 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
||||
b.HasIndex("AvatarId");
|
||||
|
||||
b.HasIndex("BloodGroupId");
|
||||
|
||||
b.HasIndex("GenderId");
|
||||
|
||||
b.HasIndex("RelationshipId");
|
||||
|
||||
b.HasIndex("ReligionId");
|
||||
|
||||
b.ToTable("PlacementReceives");
|
||||
});
|
||||
|
||||
|
|
@ -15554,6 +15550,22 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("สถานที่ยื่นขอลาออกราชการ");
|
||||
|
||||
b.Property<string>("OfficerApproveReason")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลอนุมัติการเจ้าหน้าที่");
|
||||
|
||||
b.Property<bool?>("OfficerReject")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasComment("สถานะยับยั้งการเจ้าหน้าที่");
|
||||
|
||||
b.Property<DateTime?>("OfficerRejectDate")
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasComment("วันที่ยับยั้งการเจ้าหน้าที่");
|
||||
|
||||
b.Property<string>("OfficerRejectReason")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลยับยั้งการเจ้าหน้าที่");
|
||||
|
||||
b.Property<string>("OligarchApproveReason")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลอนุมัติผู้ดูแล");
|
||||
|
|
@ -17210,31 +17222,7 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.WithMany()
|
||||
.HasForeignKey("AvatarId");
|
||||
|
||||
b.HasOne("BMA.EHR.Domain.Models.MetaData.BloodGroup", "BloodGroup")
|
||||
.WithMany()
|
||||
.HasForeignKey("BloodGroupId");
|
||||
|
||||
b.HasOne("BMA.EHR.Domain.Models.MetaData.Gender", "Gender")
|
||||
.WithMany()
|
||||
.HasForeignKey("GenderId");
|
||||
|
||||
b.HasOne("BMA.EHR.Domain.Models.MetaData.Relationship", "Relationship")
|
||||
.WithMany()
|
||||
.HasForeignKey("RelationshipId");
|
||||
|
||||
b.HasOne("BMA.EHR.Domain.Models.MetaData.Religion", "Religion")
|
||||
.WithMany()
|
||||
.HasForeignKey("ReligionId");
|
||||
|
||||
b.Navigation("Avatar");
|
||||
|
||||
b.Navigation("BloodGroup");
|
||||
|
||||
b.Navigation("Gender");
|
||||
|
||||
b.Navigation("Relationship");
|
||||
|
||||
b.Navigation("Religion");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("BMA.EHR.Domain.Models.Placement.PlacementReceiveDoc", b =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue