ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
44
Models/HR/ProfileEducation.cs
Normal file
44
Models/HR/ProfileEducation.cs
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.MetaData.Service.Models;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileEducation : EntityBase
|
||||
{
|
||||
// [Key]
|
||||
// public int Id { get; set; }
|
||||
// [Required]
|
||||
// public int Order { get; set; }
|
||||
[MaxLength(1000)]
|
||||
public string? Institute { get; set; }
|
||||
[MaxLength(200)]
|
||||
public string? Degree { get; set; }
|
||||
[MaxLength(200)]
|
||||
public string? Field { get; set; }
|
||||
[MaxLength(20)]
|
||||
public string? Gpa { get; set; }
|
||||
[MaxLength(1000)]
|
||||
public string? Country { get; set; }
|
||||
[MaxLength(1000)]
|
||||
public string? Duration { get; set; }
|
||||
[MaxLength(1000)]
|
||||
public string? Other { get; set; }
|
||||
[MaxLength(1000)]
|
||||
public string? FundName { get; set; }
|
||||
public int DurationYear { get; set; }
|
||||
public DateTime? FinishDate { get; set; }
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTime? EndDate { get; set; }
|
||||
// public EducationLevel? EducationLevel { get; set; }
|
||||
public string? EducationLevel { get; set; }
|
||||
public Guid? EducationLevelId { get; set; }
|
||||
// public string? Name { get; set; }
|
||||
// public int? Start { get; set; }
|
||||
// public int? End { get; set; }
|
||||
// public string? Education { get; set; }
|
||||
// public string? Major { get; set; }
|
||||
public virtual List<ProfileEducationHistory> ProfileEducationHistorys { get; set; } = new List<ProfileEducationHistory>();
|
||||
public virtual Profile? Profile { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue