hrms-api-exam/Models/Disable/DisableEducation.cs
Harid Promsri ecd794a070
migrate + ปรับสอบคัดเลือกผู้พิการ (#3)
Co-authored-by: harid <harid_pr61@live.rmutl.com>
2025-10-16 15:57:31 +07:00

33 lines
832 B
C#

using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
{
public class DisableEducation : EntityBase
{
[MaxLength(200)]
public string Degree { get; set; }//
[MaxLength(200)]
public string Major { get; set; }//
[MaxLength(20)]
public string MajorGroupId { get; set; }
[MaxLength(200)]
public string MajorGroupName { get; set; }
[MaxLength(200)]
public string University { get; set; }//
public double GPA { get; set; } = 0.0;//
[MaxLength(1000)]
public string Specialist { get; set; }
[MaxLength(200)]
public string HighDegree { get; set; }//
public DateTime? BachelorDate { get; set; }//
public Disable Disable { get; set; }
}
}