1
This commit is contained in:
21
iMES.WebApi/Controllers/System/Sys_DeptController.cs
Normal file
21
iMES.WebApi/Controllers/System/Sys_DeptController.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*如果要增加方法请在当前目录下Partial文件夹Sys_DeptController编写
|
||||
*/
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using iMES.Core.Controllers.Basic;
|
||||
using iMES.Entity.AttributeManager;
|
||||
using iMES.System.IServices;
|
||||
namespace iMES.System.Controllers
|
||||
{
|
||||
[Route("api/Sys_Dept")]
|
||||
[PermissionTable(Name = "Sys_Dept")]
|
||||
public partial class Sys_DeptController : ApiBaseController<ISys_DeptService>
|
||||
{
|
||||
public Sys_DeptController(ISys_DeptService service)
|
||||
: base(service)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user