api โอนชื่อผู้ผ่านการสอบคัดเลือกอื่นๆตามเลขบัตรประชาชนไปบรรจุ

This commit is contained in:
harid 2026-07-22 17:20:25 +07:00
parent eec8eef4d6
commit be97f3071f
3 changed files with 349 additions and 0 deletions

View file

@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class SelectivePlacementRequest
{
public List<string> CitizenIds { get; set; } = new();
public DateTime AccountStartDate { get; set; }
}
}