add feature

This commit is contained in:
Suphonchai Phoonsawat 2023-03-24 15:16:00 +07:00
parent b2abfe9e87
commit b7fe4fc1f7
41 changed files with 2182 additions and 524 deletions

View file

@ -16,15 +16,6 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
[Required, Comment("ครั้งที่"), Column(Order = 3)]
public int Order { get; set; } = 1;
[Column(TypeName = "text", Order = 4), Comment("รายละเอียดของการสอบ")]
public string Description { get; set; } = String.Empty;
[Comment("รหัสหน่วยงานที่จัดสอบ"), Column(Order = 5)]
public Guid OrganizationId { get; set; }
[MaxLength(250), Comment("หน่วยงานที่ทำการจัดสอบ"), Column(Order = 6)]
public string OrganizationName { get; set; } = string.Empty;
public Document ImportFile { get; set; } = new Document();
public List<Recruit> Recruits { get; set; } = new List<Recruit>();