1
z8018
2025-06-10 e46aa927d231af83724683c7286d9db503e24cf7
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/Task_HtyController.cs
@@ -3,7 +3,6 @@
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_DTO.TaskInfo;
using WIDESEAWCS_ITaskInfoService;
using WIDESEAWCS_Model.Models;
@@ -11,18 +10,12 @@
{
    [Route("api/Task_Hty")]
    [ApiController]
    public class AgvStationController : ApiBaseController<ITask_HtyService, Dt_Task_hty>
    public class AgvStationController : ApiBaseController<ITask_HtyService, Dt_Task_Hty>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public AgvStationController(ITask_HtyService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
        [HttpGet, Route("fifteenTotal_quantityndex"), AllowAnonymous]
        public WebResponseContent fifteenTotal_quantityndex()
        {
            return Service.fifteenTotal_quantityndex();
        }
    }
}