api ใบประกอบวิชาชีพ
This commit is contained in:
parent
e4fa2ff1c1
commit
0a626fb393
8 changed files with 104 additions and 55 deletions
22
BMA.EHR.Domain/Models/Placement/PlacementCertificate.cs
Normal file
22
BMA.EHR.Domain/Models/Placement/PlacementCertificate.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Placement
|
||||
{
|
||||
public class PlacementCertificate : EntityBase
|
||||
{
|
||||
[Required, Comment("Id ผู้สมัคร")]
|
||||
public virtual PlacementProfile? PlacementProfile { get; set; }
|
||||
[MaxLength(20), Comment("เลขที่ใบอนุญาต")]
|
||||
public string? CertificateNo { get; set; }
|
||||
[MaxLength(200), Comment("หน่วยงานผู้ออกใบอนุญาต")]
|
||||
public string? Issuer { get; set; }
|
||||
[Comment("วันที่ออกใบอนุญาต")]
|
||||
public DateTime? IssueDate { get; set; }
|
||||
[Comment("วันที่หมดอายุ")]
|
||||
public DateTime? ExpireDate { get; set; }
|
||||
[MaxLength(100), Comment("ชื่อใบอนุญาต")]
|
||||
public string? CertificateType { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue