You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.WebApi/Controllers/System/Sys_RoleController.cs

22 lines
602 B
C#

2 years ago
/*
*,
*PartialSys_RoleController
*/
using Microsoft.AspNetCore.Mvc;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
using VOL.System.IServices;
namespace VOL.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(service)
{
}
}
}