2023-04-11 12:53:25 +07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2026-05-12 16:32:46 +07:00
|
|
|
namespace BMA.EHR.Recruit.Models.Recruits
|
2023-04-11 12:53:25 +07:00
|
|
|
{
|
|
|
|
|
public class RecruitImportHistory : EntityBase
|
|
|
|
|
{
|
|
|
|
|
[Required, Comment("รายละเอียดการนำเข้า"), Column(Order = 1)]
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public RecruitImport RecruitImport { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|