hrms-api-recruit/Models/Recruits/RecruitEducation.cs

34 lines
696 B
C#
Raw Normal View History

2023-03-13 12:29:56 +07:00
using System.ComponentModel.DataAnnotations;
2026-05-12 16:32:46 +07:00
namespace BMA.EHR.Recruit.Models.Recruits
2023-03-13 12:29:56 +07:00
{
public class RecruitEducation : 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; }
2023-03-13 12:29:56 +07:00
public Recruit Recruit { get; set; }
}
}