14 lines
481 B
C#
14 lines
481 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
||
|
|
{
|
||
|
|
public class RecruitImportHistory : EntityBase
|
||
|
|
{
|
||
|
|
[Required, Comment("รายละเอียดการนำเข้า"), Column(Order = 1)]
|
||
|
|
public string Description { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public RecruitImport RecruitImport { get; set; }
|
||
|
|
}
|
||
|
|
}
|