2024-04-30 00:10:07 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class OrgRequest
|
|
|
|
|
{
|
|
|
|
|
public OrgRequestData result { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
public class OrgRequestData
|
|
|
|
|
{
|
2024-07-01 01:30:24 +07:00
|
|
|
public string? id { get; set; }
|
2024-05-02 09:31:38 +07:00
|
|
|
public string? profileId { get; set; }
|
|
|
|
|
public string? prefix { get; set; }
|
|
|
|
|
public string? firstName { get; set; }
|
|
|
|
|
public string? lastName { get; set; }
|
|
|
|
|
public string? citizenId { get; set; }
|
2024-05-03 17:39:10 +07:00
|
|
|
public DateTime? birthDate { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? root { get; set; }
|
|
|
|
|
public string? rootId { get; set; }
|
2025-02-05 17:48:58 +07:00
|
|
|
public string? rootDnaId { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? rootShortName { get; set; }
|
|
|
|
|
public string? child1 { get; set; }
|
|
|
|
|
public string? child1Id { get; set; }
|
2025-02-05 17:48:58 +07:00
|
|
|
public string? child1DnaId { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? child1ShortName { get; set; }
|
|
|
|
|
public string? child2 { get; set; }
|
|
|
|
|
public string? child2Id { get; set; }
|
2025-02-05 17:48:58 +07:00
|
|
|
public string? child2DnaId { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? child2ShortName { get; set; }
|
|
|
|
|
public string? child3 { get; set; }
|
|
|
|
|
public string? child3Id { get; set; }
|
2025-02-05 17:48:58 +07:00
|
|
|
public string? child3DnaId { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? child3ShortName { get; set; }
|
|
|
|
|
public string? child4 { get; set; }
|
|
|
|
|
public string? child4Id { get; set; }
|
2025-02-05 17:48:58 +07:00
|
|
|
public string? child4DnaId { get; set; }
|
2024-04-30 00:10:07 +07:00
|
|
|
public string? child4ShortName { get; set; }
|
2024-05-03 17:39:10 +07:00
|
|
|
public string? node { get; set; }
|
|
|
|
|
public string? nodeId { get; set; }
|
|
|
|
|
public string? nodeShortName { get; set; }
|
2024-05-02 09:31:38 +07:00
|
|
|
public int? posMasterNo { get; set; }
|
|
|
|
|
public string? position { get; set; }
|
2025-03-21 14:31:45 +07:00
|
|
|
public string? posExecutiveName { get; set; }
|
2025-06-16 12:10:50 +07:00
|
|
|
public string? positionExecutiveField { get; set; }
|
|
|
|
|
public string? positionArea { get; set; }
|
2024-05-02 09:31:38 +07:00
|
|
|
public string? posTypeId { get; set; }
|
|
|
|
|
public string? posTypeName { get; set; }
|
|
|
|
|
public string? posLevelId { get; set; }
|
|
|
|
|
public string? posLevelName { get; set; }
|
2024-09-25 11:29:49 +07:00
|
|
|
public double? salary { get; set; }
|
2024-11-08 13:16:14 +07:00
|
|
|
public string? education { get; set; }
|
2024-12-27 00:17:02 +07:00
|
|
|
public double? Amount { get; set; }
|
2025-07-03 16:16:32 +07:00
|
|
|
public string? avatarUrl { get; set; }
|
2026-01-20 17:30:11 +07:00
|
|
|
public bool? isDeputy { get; set; }
|
2024-09-25 11:29:49 +07:00
|
|
|
|
2024-04-30 00:10:07 +07:00
|
|
|
}
|
|
|
|
|
}
|