2024-12-13 11:52:58 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.HR;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Application.Responses.Profiles
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GetProfileByKeycloakIdRootDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
|
|
public string? LastName { get; set; }
|
2025-01-17 15:06:28 +07:00
|
|
|
|
public string? CitizenId { get; set; }
|
2024-12-13 11:52:58 +07:00
|
|
|
|
public Guid? Keycloak { get; set; }
|
|
|
|
|
|
public string? PosNo { get; set; }
|
|
|
|
|
|
public string? Position { get; set; }
|
|
|
|
|
|
public string? PositionLevel { get; set; }
|
2025-01-17 15:06:28 +07:00
|
|
|
|
public string? PositionType { get; set; }
|
2024-12-13 11:52:58 +07:00
|
|
|
|
public string? Oc { get; set; }
|
2025-07-09 16:14:15 +07:00
|
|
|
|
public string? OrgRootId { get; set; }
|
|
|
|
|
|
public string? OrgChild1Id { get; set; }
|
|
|
|
|
|
public string? OrgChild2Id { get; set; }
|
|
|
|
|
|
public string? OrgChild3Id { get; set; }
|
|
|
|
|
|
public string? OrgChild4Id { get; set; }
|
|
|
|
|
|
|
2025-09-02 14:55:07 +07:00
|
|
|
|
public DateTime? DateStart { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? DateAppoint { get; set; }
|
2025-10-09 23:21:36 +07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class GetProfileByKeycloakIdRootAddTotalDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<GetProfileByKeycloakIdRootDto> Data { get; set; } = new();
|
2025-09-02 14:55:07 +07:00
|
|
|
|
|
2025-10-09 23:21:36 +07:00
|
|
|
|
public int Total { get; set; }
|
2024-12-13 11:52:58 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|