23 lines
804 B
C#
23 lines
804 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|
{
|
|
public class ProfileCertificateHistory : EntityBase
|
|
{
|
|
[MaxLength(20)]
|
|
public string? CertificateNo { get; set; }
|
|
[MaxLength(200)]
|
|
public string? Issuer { get; set; }
|
|
public DateTime? IssueDate { get; set; }
|
|
public DateTime? ExpireDate { get; set; }
|
|
[MaxLength(100)]
|
|
public string? CertificateType { get; set; }
|
|
// public string? Name { get; set; }
|
|
// public string? CertiNumber { get; set; }
|
|
// public DateTime? Start { get; set; }
|
|
// public DateTime? End { get; set; }
|
|
public virtual ProfileCertificate? ProfileCertificate { get; set; }
|
|
}
|
|
}
|