kazelee
2025-05-21 a8627a98b82d2364cbe849ca746e72fbab9916e5
api/AgvController.cs
File was renamed from Controllers/AgvController.cs
@@ -1,21 +1,19 @@
using HH.WCS.Mobox3.AnGang.ServiceCore;
using HH.WCS.Mobox3.AnGang.Dispatch;
using HH.WCS.Mobox3.AnGang.core;
using HH.WCS.Mobox3.AnGang.dispatch;
using HH.WCS.Mobox3.AnGang.process;
using HH.WCS.Mobox3.AnGang.Helper;
using HH.WCS.Mobox3.AnGang.wms;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Reflection;
using System.Web.Http;
using static HH.WCS.Mobox3.AnGang.Dispatch.NDC;
using static HH.WCS.Mobox3.AnGang.dispatch.NDC;
using System.Linq;
using HH.WCS.Mobox3.AnGang.config;
using HH.WCS.Mobox3.AnGang.Services;
using static HH.WCS.Mobox3.AnGang.Dtos.Request.AgvRequest;
using static HH.WCS.Mobox3.AnGang.Dtos.Response.AgvResponse;
using static HH.WCS.Mobox3.AnGang.Controllers.ApiModel;
namespace HH.WCS.Mobox3.AnGang.Controllers
using static HH.WCS.Mobox3.AnGang.api.ApiModel;
namespace HH.WCS.Mobox3.AnGang.api
{
    /// <summary>
    /// 设备信息上报(hosttoagv上报、杭奥堆垛机、国自agv)
@@ -55,7 +53,7 @@
        [HttpPost]
        [Route("safetyInteraction")]
        public ReturnResult SafetyInteraction(SafetyInteractionInfo model) {
            return AgvService.SafetyInteraction(model);
            return WCSCore.SafetyInteraction(model);
        }
    }
}