| | |
| | | using Microsoft.AspNetCore.Http; |
| | | 锘縰sing Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using Microsoft.AspNetCore.Routing; |
| | | using WIDESEA_DTO.System; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_DTO.System; |
| | | using WIDESEA_IServices; |
| | | using WIDESEA_ISystemService; |
| | | using WIDESEA_Model.Models; |
| | | using WIDESEA_Model.Models.System; |
| | | namespace WIDESEA_WMSServer.Controllers{ |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers.System |
| | | { |
| | | [Route("api/Sys_Role")] |
| | | [ApiController] |
| | | public class Sys_RoleController : ApiBaseController<ISys_RoleService, Sys_Role> |
| | | { |
| | | private readonly IHttpContextAccessor _httpContextAccessor; |
| | | |
| | | public Sys_RoleController(ISys_RoleService service, IHttpContextAccessor httpContextAccessor) : base(service) |
| | | { |
| | | _httpContextAccessor = httpContextAccessor; |