1
This commit is contained in:
23
iMES.WebApi/Controllers/System/Sys_UserController.cs
Normal file
23
iMES.WebApi/Controllers/System/Sys_UserController.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Caching.Memory;
|
||||
using System.Threading.Tasks;
|
||||
using iMES.Core.Controllers.Basic;
|
||||
using iMES.Entity.AttributeManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.System.IServices;
|
||||
|
||||
namespace iMES.System.Controllers
|
||||
{
|
||||
[Route("api/Sys_User")]
|
||||
[PermissionTable(Name = "Sys_User")]
|
||||
public partial class Sys_UserController : ApiBaseController<ISys_UserService>
|
||||
{
|
||||
public Sys_UserController(ISys_UserService service)
|
||||
: base("System", "System", "Sys_User", service)
|
||||
{
|
||||
//, IMemoryCache cache
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user