WMS
dengjunjie
2024-10-17 212af0b4bbc0f11e0b552d1bc3a4a73e52127e02
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/System/Sys_RoleController.cs
@@ -1,21 +1,21 @@
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;