20 lines
444 B
C#
20 lines
444 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|
{
|
|
public class RecruitCertificate : EntityBase
|
|
{
|
|
[MaxLength(50)]
|
|
public string CertificateNo { get; set; }
|
|
|
|
[MaxLength(200)]
|
|
public string Description { get; set; }
|
|
|
|
public DateTime IssueDate { get; set; }
|
|
|
|
public DateTime ExpiredDate { get; set; }
|
|
|
|
public Recruit Recruit { get; set; }
|
|
}
|
|
}
|