add table and class for gentree

This commit is contained in:
Suphonchai Phoonsawat 2023-10-11 11:01:49 +07:00
parent ccebc7773f
commit eb960ce533
8 changed files with 16951 additions and 1 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Organizations
{
public class OrgPosFinal
{
public Guid? OrganizationPositionId { get; set; }
public string? PositionNumberName { get; set; }
}
}