ส่งออกข้อมูลผู้มิสิทธื์สอบ
ส่งออกข้อมูลผู้สอบผ่านภาค ก.
This commit is contained in:
Suphonchai Phoonsawat 2023-04-25 13:13:27 +07:00
parent b8109e80ac
commit b1f8c78ced
34 changed files with 5935 additions and 8 deletions

View file

@ -75,5 +75,7 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
public DateTime ModifiedDate { get; set; }
public DateTime ApplyDate { get; set; }
public string? PositionName { get; set; }
}
}

View file

@ -46,6 +46,9 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
[Column(Order = 13, TypeName = "text"), Comment("หมายเหตุ")]
public string? Note { get; set; }
[Column(Order = 14), Comment("วันที่ประกาศผลสอบ")]
public DateTime? AnnouncementDate { get; set; }
public Document ImportFile { get; set; } = new Document();
public List<Recruit> Recruits { get; set; } = new List<Recruit>();

View file

@ -13,12 +13,18 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
public double PercentageA { get; set; }
[MaxLength(50)]
public string AStatus { get; set; }
public int SumB { get; set; }
public int FullB { get; set; }
public double PercentageB { get; set; }
[MaxLength(50)]
public string BStatus { get; set; }
public int SumAB { get; set; }
[Required, MaxLength(50)]
@ -30,6 +36,9 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
public double PercentageC { get; set; }
[MaxLength(50)]
public string CStatus { get; set; }
[Required, MaxLength(50)]
public string ExamStatus { get; set; }