chengsc
2025-05-08 16b0a2c97ee5349079f4deda0aab512af8a06dae
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);
    }
}