แก้ api เพิ่มเติมการ upload image and document

This commit is contained in:
Suphonchai Phoonsawat 2023-05-02 22:59:01 +07:00
parent 86ec5de116
commit 6acd497afe
23 changed files with 4081 additions and 53 deletions

View file

@ -56,5 +56,11 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
public ScoreImport ScoreImport { get; set; }
public List<RecruitImportHistory> ImportHostories { get; set; } = new List<RecruitImportHistory>();
[Comment("รูป")]
public virtual List<RecruitImportImage> RecruitImages { get; set; } = new();
[Comment("เอกสาร")]
public virtual List<RecruitImportDocument> RecruitDocuments { get; set; } = new();
}
}