分支自 SuZhouGuanHong/TaiYuanTaiZhong

huanghongfeng
2024-07-09 a8e17feaaaafd549c81ea7e18f5c968af28d9391
´úÂë¹ÜÀí/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}");
            }
        }
    }
}