ต่อ api บุคคลที่สามารถติดต่อได้

This commit is contained in:
Kittapath 2023-10-06 01:28:37 +07:00
parent 20b031c29f
commit b8f12139e1
11 changed files with 3384 additions and 64 deletions

View file

@ -295,6 +295,26 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
[Comment("วันที่ชำระเงิน")]
public DateTime? PaymentDate { get; set; }
[Comment("Id คำนำหน้า บุคคลที่สามารถติดต่อได้")]
public Guid? ContactPrefixId { get; set; }
[Comment("คำนำหน้า บุคคลที่สามารถติดต่อได้")]
public string? ContactPrefixName { get; set; }
[Comment("ชื่อ บุคคลที่สามารถติดต่อได้")]
public string? ContactFirstname { get; set; }
[Comment("สกุล บุคคลที่สามารถติดต่อได้")]
public string? ContactLastname { get; set; }
[Comment("เกี่ยวข้องเป็น บุคคลที่สามารถติดต่อได้")]
public string? ContactRelations { get; set; }
[Comment("โทรศัพท์ บุคคลที่สามารถติดต่อได้")]
public string? ContactTel { get; set; }
public virtual List<Education> Educations { get; set; } = new List<Education>();
}