โอนคนสรรหาไปบรรจุ

This commit is contained in:
Kittapath 2023-07-26 18:43:10 +07:00
parent 9a53f34107
commit 7fbdf971fa
13 changed files with 530 additions and 312 deletions

View file

@ -8,37 +8,37 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
{
[Required, MaxLength(13), Comment("เลขประจำตัวประชาชน")]
public string CitizenId { get; set; } = string.Empty;
public string CitizenId { get; set; } = string.Empty;//
[Required, MaxLength(50)]
public string ExamId { get; set; } = string.Empty;
public string ExamId { get; set; } = string.Empty;//
[Required, MaxLength(50)]
public string Prefix { get; set; } = string.Empty;
public string Prefix { get; set; } = string.Empty;//
[Required, MaxLength(150)]
public string FirstName { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;//
[Required, MaxLength(150)]
public string LastName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;//
[MaxLength(20)]
public string Gendor { get; set; } = string.Empty;
public string Gendor { get; set; } = string.Empty;//
[MaxLength(200)]
public string National { get; set; } = string.Empty;
public string National { get; set; } = string.Empty;//
[MaxLength(200)]
public string Race { get; set; } = string.Empty;
public string Race { get; set; } = string.Empty;//
[MaxLength(200)]
public string Religion { get; set; } = string.Empty;
public string Religion { get; set; } = string.Empty;//
[Required]
public DateTime DateOfBirth { get; set; }
public DateTime DateOfBirth { get; set; }//
[MaxLength(20)]
public string Marry { get; set; } = string.Empty;
public string Marry { get; set; } = string.Empty;//
[MaxLength(1)]
public string Isspecial { get; set; } = "N";
@ -47,9 +47,9 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public string RefNo { get; set; } = string.Empty;
[MaxLength(200)]
public string CitizenCardIssuer { get; set; } = string.Empty;
public string CitizenCardIssuer { get; set; } = string.Empty;//
public DateTime CitizenCardExpireDate { get; set; }
public DateTime CitizenCardExpireDate { get; set; }//
[MaxLength(200)]
public string Remark { get; set; } = string.Empty;
@ -77,6 +77,6 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public DateTime ApplyDate { get; set; }
public string? PositionName { get; set; }
public string? PositionName { get; set; }//
}
}

View file

@ -5,58 +5,58 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public class DisableAddress : EntityBase
{
[MaxLength(200)]
public string Address { get; set; }
public string Address { get; set; }//
[MaxLength(200)]
public string Moo { get; set; }
public string Moo { get; set; }//
[MaxLength(200)]
public string Soi { get; set; }
public string Soi { get; set; }//
[MaxLength(200)]
public string Road { get; set; }
public string Road { get; set; }//
[MaxLength(200)]
public string District { get; set; }
public string District { get; set; }//
[MaxLength(200)]
public string Amphur { get; set; }
public string Amphur { get; set; }//
[MaxLength(200)]
public string Province { get; set; }
public string Province { get; set; }//
[MaxLength(5)]
public string ZipCode { get; set; }
public string ZipCode { get; set; }//
[MaxLength(200)]
public string Telephone { get; set; }
public string Telephone { get; set; }//
[MaxLength(200)]
public string Mobile { get; set; }
public string Mobile { get; set; }//
[MaxLength(200)]
public string Address1 { get; set; }
public string Address1 { get; set; }//
[MaxLength(200)]
public string Moo1 { get; set; }
public string Moo1 { get; set; }//
[MaxLength(200)]
public string Soi1 { get; set; }
public string Soi1 { get; set; }//
[MaxLength(200)]
public string Road1 { get; set; }
public string Road1 { get; set; }//
[MaxLength(200)]
public string District1 { get; set; }
public string District1 { get; set; }//
[MaxLength(200)]
public string Amphur1 { get; set; }
public string Amphur1 { get; set; }//
[MaxLength(200)]
public string Province1 { get; set; }
public string Province1 { get; set; }//
[MaxLength(5)]
public string ZipCode1 { get; set; }
public string ZipCode1 { get; set; }//
public Disable Disable { get; set; }
}

View file

@ -5,10 +5,10 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public class DisableEducation : EntityBase
{
[MaxLength(200)]
public string Degree { get; set; }
public string Degree { get; set; }//
[MaxLength(200)]
public string Major { get; set; }
public string Major { get; set; }//
[MaxLength(20)]
public string MajorGroupId { get; set; }
@ -17,16 +17,16 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public string MajorGroupName { get; set; }
[MaxLength(200)]
public string University { get; set; }
public double GPA { get; set; } = 0.0;
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 string HighDegree { get; set; }//
public DateTime BachelorDate { get; set; }
public DateTime BachelorDate { get; set; }//
public Disable Disable { get; set; }
}

View file

@ -11,13 +11,13 @@ namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
public string WorkAge { get; set; }
[MaxLength(200)]
public string Position { get; set; }
public string Position { get; set; }//
[MaxLength(200)]
public string Workplace { get; set; }
public string Workplace { get; set; }//
[MaxLength(200)]
public string Telephone { get; set; }
public string Telephone { get; set; }//
public Disable Disable { get; set; }
}