Administrator
2025-05-08 f928756ecbf68886443ab87ce458b99aba73a763
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.IBLL
{
    public interface IHttpServer
    {
        /// <summary>
        /// agv走出储位修改储位信息,仅限平库储位
        /// </summary>
        /// <param name="taskNo"></param>
        /// <param name="userId"></param>
        void UpLocateByAgvOut(string taskNo,int userId);
    }
}