2026-05-12 16:32:46 +07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-05-02 22:59:01 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2026-05-12 16:32:46 +07:00
|
|
|
|
using BMA.EHR.Recruit.Models.Documents;
|
2023-05-02 22:59:01 +07:00
|
|
|
|
|
2026-05-12 16:32:46 +07:00
|
|
|
|
namespace BMA.EHR.Recruit.Models.Recruits
|
2023-05-02 22:59:01 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class RecruitImportDocument : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, Comment("Id รอบสมัครสอบ")]
|
|
|
|
|
|
public Guid RecruitImportId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public virtual RecruitImport? RecruitImport { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Required, Comment("Id เอกสาร")]
|
|
|
|
|
|
public Guid DocumentId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public virtual Document? Document { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|