分支自 SuZhouGuanHong/TaiYuanTaiZhong

dengjunjie
2024-03-25 65151e7ac63e10113ecbeeabf302a4240bf08e97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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}");
            }
        }
    }
}