2024-10-28 16:01:48 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class OrgRequestAct
|
|
|
|
|
{
|
|
|
|
|
public OrgRequestActData result { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
public class OrgRequestActData
|
|
|
|
|
{
|
|
|
|
|
public bool? isOfficer { get; set; }
|
|
|
|
|
public string? rootId { get; set; }
|
|
|
|
|
public string? child1Id { get; set; }
|
|
|
|
|
public string? child2Id { get; set; }
|
|
|
|
|
public string? child3Id { get; set; }
|
|
|
|
|
public string? child4Id { get; set; }
|
2026-01-21 17:00:45 +07:00
|
|
|
public string? rootDnaId { get; set; }
|
2024-10-28 16:01:48 +07:00
|
|
|
}
|
|
|
|
|
}
|