hrms-api-recruit/Models/Recruits/RecruitScore.cs
Suphonchai Phoonsawat b1f8c78ced Add API
ส่งออกข้อมูลผู้มิสิทธื์สอบ
ส่งออกข้อมูลผู้สอบผ่านภาค ก.
2023-04-25 13:13:27 +07:00

50 lines
991 B
C#

using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
{
public class RecruitScore : EntityBase
{
[Required, MaxLength(50)]
public string ExamId { get; set; }
public int SumA { get; set; }
public int FullA { get; set; }
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)]
public string ABStatus { get; set; }
public int SumC { get; set; }
public int FullC { get; set; }
public double PercentageC { get; set; }
[MaxLength(50)]
public string CStatus { get; set; }
[Required, MaxLength(50)]
public string ExamStatus { get; set; }
[MaxLength(200)]
public string Major { get; set; }
public ScoreImport ScoreImport { get; set; }
}
}