2023-04-06 22:50:53 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestCardCandidate
|
|
|
|
|
|
{
|
2023-04-20 11:20:04 +07:00
|
|
|
|
public string? Avatar { get; set; }
|
2023-04-06 22:50:53 +07:00
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
|
|
public string? CitizenId { get; set; }
|
|
|
|
|
|
public string? ExamIdenNumber { get; set; }
|
|
|
|
|
|
public string? SeatNumber { get; set; }
|
2023-07-04 20:55:37 +07:00
|
|
|
|
public string? PointTotalA { get; set; }
|
|
|
|
|
|
public string? PointPath1A { get; set; }
|
|
|
|
|
|
public string? PointPath2A { get; set; }
|
|
|
|
|
|
public string? PointPath3A { get; set; }
|
|
|
|
|
|
public string? PointA { get; set; }
|
|
|
|
|
|
public string? PointPerA { get; set; }
|
|
|
|
|
|
public string? ResultA { get; set; }
|
2023-04-25 03:46:57 +07:00
|
|
|
|
public string? PointTotalB { get; set; }
|
|
|
|
|
|
public string? PointB { get; set; }
|
2023-07-04 20:55:37 +07:00
|
|
|
|
public string? PointPerB { get; set; }
|
2023-04-25 03:46:57 +07:00
|
|
|
|
public string? ResultB { get; set; }
|
|
|
|
|
|
public string? PointTotalC { get; set; }
|
2023-07-04 20:55:37 +07:00
|
|
|
|
public string? PointPath1C { get; set; }
|
|
|
|
|
|
public string? PointPath2C { get; set; }
|
2023-04-25 03:46:57 +07:00
|
|
|
|
public string? PointC { get; set; }
|
2023-07-04 20:55:37 +07:00
|
|
|
|
public string? PointPerC { get; set; }
|
2023-04-25 03:46:57 +07:00
|
|
|
|
public string? ResultC { get; set; }
|
|
|
|
|
|
public string? Pass { get; set; }
|
2023-07-04 20:55:37 +07:00
|
|
|
|
public string? ExamReason { get; set; }
|
2023-04-29 10:26:03 +07:00
|
|
|
|
public string? Number { get; set; }
|
2023-05-04 15:49:46 +07:00
|
|
|
|
public int? ReviewPoint { get; set; }
|
|
|
|
|
|
public string? Review { get; set; }
|
2023-06-01 15:49:25 +07:00
|
|
|
|
public string? Position { get; set; }
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public string? PositionLevel { get; set; }
|
2023-06-01 15:49:25 +07:00
|
|
|
|
public string? HighDegree { get; set; }
|
2023-04-28 11:44:59 +07:00
|
|
|
|
public DateTime? AnnouncementDate { get; set; }
|
2023-04-06 22:50:53 +07:00
|
|
|
|
public Guid? Id { get; set; }
|
2025-11-18 13:21:57 +07:00
|
|
|
|
public bool? IsShowExamInfo { get; set; }
|
2023-04-06 22:50:53 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|