ปรับปรุงส่วน ตารางกำหนดช่วงร้อยละที่ได้เลื่อน

This commit is contained in:
nakorn
2021-10-30 11:53:07 +07:00
parent 8e8596116f
commit 7baab53365
15 changed files with 1539 additions and 171 deletions

View File

@@ -729,9 +729,11 @@ namespace tb320eva.Migrations
b.Property<DateTime>("created");
b.Property<Guid?>("group_guid");
b.Property<bool>("isActive");
b.Property<Guid>("level_score_id");
b.Property<Guid?>("level_score_id");
b.Property<decimal?>("max_percentage");
@@ -745,6 +747,8 @@ namespace tb320eva.Migrations
b.HasKey("id");
b.HasIndex("group_guid");
b.HasIndex("level_score_id");
b.ToTable("eva_level_score_detail");
@@ -1106,10 +1110,13 @@ namespace tb320eva.Migrations
modelBuilder.Entity("TodoAPI2.Models.eva_level_score_detailEntity", b =>
{
b.HasOne("TodoAPI2.Models.eva_evaluation_groupEntity", "eva_evaluation_group_group_guid")
.WithMany()
.HasForeignKey("group_guid");
b.HasOne("TodoAPI2.Models.eva_level_scoreEntity", "eva_level_score_level_score_id")
.WithMany()
.HasForeignKey("level_score_id")
.OnDelete(DeleteBehavior.Cascade);
.HasForeignKey("level_score_id");
});
modelBuilder.Entity("TodoAPI2.Models.eva_limit_frame_employeeEntity", b =>