| using Microsoft.AspNetCore.Authorization; | 
| using Microsoft.AspNetCore.Mvc; | 
| using System.Collections.Generic; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core.Controllers.Basic; | 
| using WIDESEA_Core.Enums; | 
| using WIDESEA_Core.Filters; | 
| using WIDESEA_Entity.AttributeManager; | 
| using WIDESEA_Entity.DomainModels; | 
| using WIDESEA_System.IServices; | 
|   | 
| namespace WIDESEA_System.Controllers | 
| { | 
|     [Route("api/Sys_Role")] | 
|     [PermissionTable(Name = "Sys_Role")] | 
|     public partial class Sys_RoleController : ApiBaseController<ISys_RoleService> | 
|     { | 
|         public Sys_RoleController(ISys_RoleService service) | 
|         : base("System", "System", "Sys_Role", service) | 
|         { | 
|   | 
|         } | 
|     } | 
| } |