using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.Utilities;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_Entity.DomainModels.Mes;
|
|
namespace WIDESEA_WMS
|
{
|
public partial class ToMesServer
|
{
|
/// <summary>
|
/// 绑定车轮/更新货位状态
|
/// </summary>
|
/// <param name="requestTemp"></param>
|
/// <returns></returns>
|
public WebResponseContent UpdateStation(SaveModel saveModel)
|
{
|
WebResponseContent content = new WebResponseContent();
|
try
|
{
|
string user = saveModel.MainData["creator"].ToString();
|
return content.Error($"{user}无操作权限!");
|
return content.OK();
|
}
|
catch (Exception ex)
|
{
|
return content.Error($"呼叫AGV失败:{ex.Message}");
|
}
|
}
|
}
|
}
|