โอนคนจากสรรหาไปบรรจุ เพิ่มใส่รูป

This commit is contained in:
Kittapath 2023-09-07 23:51:21 +07:00
parent 126083cc48
commit 0f71e2665a
6 changed files with 160 additions and 160 deletions

View file

@ -1,6 +1,7 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Recurit.Exam.Service.Models;
using BMA.EHR.Recurit.Exam.Service.Models.Documents;
namespace BMA.EHR.Domain.Models.Placement
{
@ -237,6 +238,9 @@ namespace BMA.EHR.Domain.Models.Placement
[Comment("ข้อมูลตำแหน่ง Draft")]
public bool? Draft { get; set; }
[Comment("Id รูปโปรไฟล์")]
public virtual Document? ProfileImg { get; set; }
public virtual List<PlacementCertificate> PlacementCertificates { get; set; } = new List<PlacementCertificate>();
public virtual List<PlacementEducation> PlacementEducations { get; set; } = new List<PlacementEducation>();
}