เพิ่มฟิวตำแหน่งตอนสร้างรอบสมัคร
This commit is contained in:
parent
dee47f326d
commit
bed23f911a
19 changed files with 3228 additions and 568 deletions
29
Request/RequestPeriodExam.cs
Normal file
29
Request/RequestPeriodExam.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
using System.Net;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Request
|
||||
{
|
||||
public class RequestPeriodExam
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public bool CheckDocument { get; set; } = false;
|
||||
public bool CheckDisability { get; set; } = false;
|
||||
public int? Round { get; set; }
|
||||
public int? Year { get; set; }
|
||||
public float? Fee { get; set; } = 0;
|
||||
public DateTime RegisterStartDate { get; set; } = DateTime.Now.Date;
|
||||
public DateTime RegisterEndDate { get; set; } = DateTime.Now.Date;
|
||||
public DateTime PaymentStartDate { get; set; } = DateTime.Now.Date;
|
||||
public DateTime PaymentEndDate { get; set; } = DateTime.Now.Date;
|
||||
public DateTime AnnouncementStartDate { get; set; } = DateTime.Now.Date;
|
||||
public DateTime AnnouncementEndDate { get; set; } = DateTime.Now.Date;
|
||||
public Guid? OrganizationCodeId { get; set; }
|
||||
public string? OrganizationCodeName { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
public string? OrganizationName { get; set; }
|
||||
public string? PaymentKrungThai { get; set; }
|
||||
public string? Detail { get; set; }
|
||||
public string? Note { get; set; }
|
||||
public List<RequestBankExam> BankExam { get; set; } = new();
|
||||
public List<RequestPositionExam> PositionExam { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue