ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
23
Models/HR/ProfileCertificateHistory.cs
Normal file
23
Models/HR/ProfileCertificateHistory.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue