Files
iMES_Net/iMES.WebApi/Controllers/System/Sys_DeptTreeController.cs

22 lines
634 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
/*
*,
*Partial文件夹Sys_DeptTreeController编写
*/
using Microsoft.AspNetCore.Mvc;
using iMES.Core.Controllers.Basic;
using iMES.Entity.AttributeManager;
using iMES.System.IServices;
namespace iMES.System.Controllers
{
[Route("api/Sys_DeptTree")]
[PermissionTable(Name = "Sys_DeptTree")]
public partial class Sys_DeptTreeController : ApiBaseController<ISys_DeptTreeService>
{
public Sys_DeptTreeController(ISys_DeptTreeService service)
: base(service)
{
}
}
}