1
z8018
2025-04-08 e69f814f50fd59739dbedd88518dc8cb8d2ed3ee
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.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;
@@ -24,5 +23,11 @@
        {
            return Service.CreateTask(takePosition, putPosition, deviceCode, length, width, height);
        }
        [HttpPost, HttpGet, Route("PlaceBlockTest"), AllowAnonymous]
        public WebResponseContent PlaceBlockTest(int orderRowId)
        {
            return Service.PlaceBlockTest(orderRowId);
        }
    }
}