fix relation
All checks were successful
Build & Deploy on Dev / build (push) Successful in 41s

This commit is contained in:
Suphonchai Phoonsawat 2026-05-19 17:23:36 +07:00
parent 054ef81c63
commit d019ed588b
6 changed files with 1680 additions and 5 deletions

View file

@ -1,5 +1,6 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Recruit.Models.Recruits
{
@ -83,6 +84,7 @@ namespace BMA.EHR.Recruit.Models.Recruits
[MaxLength(50), Comment("สถานะคัดกรองคุณสมบัติ")]
public string ExamAttribute { get; set; } = string.Empty;
[ForeignKey("ScoreImport")]
public Guid ScoreImportId { get; set; }
public ScoreImport ScoreImport { get; set; }