เพิ่มฟิวตำแหน่งตอนสร้างรอบสมัคร

This commit is contained in:
Kittapath 2023-04-05 00:58:22 +07:00
parent dee47f326d
commit bed23f911a
19 changed files with 3228 additions and 568 deletions

View 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();
}
}