fix defect 25-04-2023

This commit is contained in:
Suphonchai Phoonsawat 2023-04-25 21:00:31 +07:00
parent de70220236
commit 2bd62de015
26 changed files with 3131 additions and 155 deletions

View file

@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
{
@ -45,6 +46,9 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
[MaxLength(200)]
public string Major { get; set; }
[MaxLength(200),Comment("ลำดับที่สอบได้")]
public string Number { get; set; } = string.Empty;
public ScoreImport ScoreImport { get; set; }
}
}