report placement, retire
This commit is contained in:
parent
1b04e2dfc3
commit
082f4b2f59
6 changed files with 984 additions and 29 deletions
24
BMA.EHR.Retirement.Service/Requests/NodeAllRequest.cs
Normal file
24
BMA.EHR.Retirement.Service/Requests/NodeAllRequest.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Retirement.Service.Requests
|
||||
{
|
||||
public class NodeAllRequest
|
||||
{
|
||||
public NodeAllResult result { get; set; } = new();
|
||||
}
|
||||
public class NodeAllResult
|
||||
{
|
||||
public List<NodeAllRequestData> isRootTrue { get; set; } = new();
|
||||
public List<NodeAllRequestData> isRootFalse { get; set; } = new();
|
||||
}
|
||||
public class NodeAllRequestData
|
||||
{
|
||||
public string? name { 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue