2025-05-02 20:19:01 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses.Leaves
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GetProfileLeaveByKeycloakDto
|
|
|
|
|
|
{
|
2026-01-26 18:21:33 +07:00
|
|
|
|
public string ProfileType { get; set; }
|
|
|
|
|
|
public string Prefix { get; set; }
|
|
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
|
|
public string LastName { get; set; }
|
|
|
|
|
|
public string CitizenId { get; set; }
|
2025-05-02 20:19:01 +07:00
|
|
|
|
public DateTime BirthDate { get; set; }
|
|
|
|
|
|
public DateTime RetireDate { get; set; }
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string GovAge { get; set; } = string.Empty;
|
|
|
|
|
|
public string Age { get; set; } = string.Empty;
|
2025-05-02 20:19:01 +07:00
|
|
|
|
public DateTime DateAppoint { get; set; }
|
2025-05-06 18:16:14 +07:00
|
|
|
|
public DateTime DateCurrent { get; set; }
|
2025-05-02 20:19:01 +07:00
|
|
|
|
public int Amount { get; set; }
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string? TelephoneNumber { get; set; } = string.Empty;
|
2026-01-26 18:21:33 +07:00
|
|
|
|
public string Position { get; set; } = string.Empty;
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string PosLevel { get; set; } = string.Empty;
|
|
|
|
|
|
public string PosType { get; set; } = string.Empty;
|
2026-01-26 18:21:33 +07:00
|
|
|
|
public string? PositionLeaveName { get; set; }
|
|
|
|
|
|
public string? PosExecutiveName { get; set; }
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string CurrentAddress { get; set; } = string.Empty;
|
|
|
|
|
|
public string Oc { get; set; } = string.Empty;
|
2026-01-26 18:21:33 +07:00
|
|
|
|
public bool isCommission { get; set; } = false;
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string Root { get; set; } = string.Empty;
|
|
|
|
|
|
public string? Child1 { get; set; }
|
2025-05-02 20:19:01 +07:00
|
|
|
|
public string? Child2 { get; set; }
|
|
|
|
|
|
public string? Child3 { get; set; }
|
|
|
|
|
|
public string? Child4 { get; set; }
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public List<ProfileLeavePosition> Positions { get; set; } = new();
|
|
|
|
|
|
public List<ProfileLeaveEducation> Educations { get; set; } = new();
|
2025-05-02 20:19:01 +07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ProfileLeavePosition
|
|
|
|
|
|
{
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string? PositionName { get; set; } = string.Empty;
|
2025-05-06 18:16:14 +07:00
|
|
|
|
public DateTime DateStart { get; set; }
|
|
|
|
|
|
public DateTime DateEnd { get; set; }
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string? PositionType { get; set; } = string.Empty;
|
|
|
|
|
|
public string? PositionLevel { get; set; } = string.Empty;
|
|
|
|
|
|
public string? OrgRoot { get; set; } = string.Empty;
|
|
|
|
|
|
public string? OrgChild1 { get; set; } = string.Empty;
|
|
|
|
|
|
public string? OrgChild2 { get; set; } = string.Empty;
|
|
|
|
|
|
public string? OrgChild3 { get; set; } = string.Empty;
|
|
|
|
|
|
public string? OrgChild4 { get; set; } = string.Empty;
|
2025-05-02 20:19:01 +07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ProfileLeaveEducation
|
|
|
|
|
|
{
|
2025-05-02 20:49:59 +07:00
|
|
|
|
public string EducationLevel { get; set; } = string.Empty;
|
|
|
|
|
|
public string Institute { get; set; } = string.Empty;
|
|
|
|
|
|
public string? Country { get; set; } = string.Empty;
|
2025-05-02 20:19:01 +07:00
|
|
|
|
public DateTime? FinishDate { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|