pdf ใบสมัครสอบ
This commit is contained in:
parent
86a9e90b7a
commit
98b6cc0275
15 changed files with 710 additions and 68 deletions
33
BMA.EHR.Domain/ModelsExam/Candidate/Education.cs
Normal file
33
BMA.EHR.Domain/ModelsExam/Candidate/Education.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
|
||||
namespace BMA.EHR.Domain.ModelsExam.Candidate
|
||||
{
|
||||
public class Education : EntityBase
|
||||
{
|
||||
[Required, Column(Order = 7), Comment("Id ผู้สมัคร")]
|
||||
public virtual Candidate? Candidate { get; set; }
|
||||
[Comment("Id วุฒิที่ใช้สมัครสอบ")]
|
||||
public Guid? EducationLevelExamId { get; set; }
|
||||
[Comment("วุฒิที่ใช้สมัครสอบ")]
|
||||
public string? EducationLevelExamName { get; set; }
|
||||
[Comment("ชื่อปริญญา")]
|
||||
public string? EducationName { get; set; }
|
||||
[Comment("สาขาวิชา/วิชาเอก")]
|
||||
public string? EducationMajor { get; set; }
|
||||
[Comment("ชื่อสถานศึกษา")]
|
||||
public string? EducationLocation { get; set; }
|
||||
[Comment("ประเภทสถานศึกษา")]
|
||||
public string? EducationType { get; set; }
|
||||
[Comment("วันที่สำเร็จการศึกษา")]
|
||||
public DateTime? EducationEndDate { get; set; }
|
||||
[Comment("คะแนนเฉลี่ยสะสม")]
|
||||
public string? EducationScores { get; set; }
|
||||
[Comment("Id วุฒิการศึกษาสูงสุด")]
|
||||
public Guid? EducationLevelHighId { get; set; }
|
||||
[Comment("วุฒิการศึกษาสูงสุด")]
|
||||
public string? EducationLevelHighName { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue