分支自 SuZhouGuanHong/TaiYuanTaiZhong

dengjunjie
2024-04-27 0b5ccdca6263cf7a2cee460f30c76ef1efea2811
´úÂë¹ÜÀí/WMS/WMS_Server/WIDESEA_WMS/ToMes/UpdateStation.cs
@@ -12,15 +12,23 @@
    public partial class ToMesServer
    {
        /// <summary>
        /// æ›´æ–°è´§ä½çŠ¶æ€
        /// ç»‘定车轮/更新货位状态
        /// </summary>
        /// <param name="requestTemp"></param>
        /// <returns></returns>
        public WebResponseContent UpdateStation(dt_agvtask requestTemp)
        public WebResponseContent UpdateStation(SaveModel saveModel)
        {
            WebResponseContent content = new WebResponseContent();
            return content;
            try
            {
                string user = saveModel.MainData["creator"].ToString();
                return content.Error($"{user}无操作权限!");
                return content.OK();
            }
            catch (Exception ex)
            {
                return content.Error($"呼叫AGV失败:{ex.Message}");
            }
        }
    }
}