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,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Organizations
{
public class t2
{
public Guid? deptID { get; set; }
public string? departmentName { get; set; }
public int? totalPositionCount { get; set; }
public int? totalPositionVacant { get; set; }
public Guid? parentId { get; set; }
}
}