YD_SmartSports.Api/VOL.WebApi/Controllers/System/Sys_DepartmentController.cs

22 lines
644 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
/*
*,
*Partial文件夹Sys_DepartmentController编写
*/
using Microsoft.AspNetCore.Mvc;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
using VOL.System.IServices;
namespace VOL.System.Controllers
{
[Route("api/Sys_Department")]
[PermissionTable(Name = "Sys_Department")]
public partial class Sys_DepartmentController : ApiBaseController<ISys_DepartmentService>
{
public Sys_DepartmentController(ISys_DepartmentService service)
: base(service)
{
}
}
}