using Model.InterFaceModel;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace WMS.IBLL
|
{
|
public interface IHttpServer
|
{
|
|
/// <summary>
|
/// 申请储位 (立体库)
|
/// </summary>
|
/// <param name="palletNo"></param>
|
/// <param name="houseNo"></param>
|
/// <returns></returns>
|
OutCommandDto RequestLocation(string palletNo, string houseNo);
|
|
/// <summary>
|
/// agv走出储位修改储位信息,仅限平库储位
|
/// </summary>
|
/// <param name="taskNo"></param>
|
/// <param name="userId"></param>
|
void UpLocateByAgvOut(string taskNo,int userId);
|
|
/// <summary>
|
/// 入库完成JC34
|
/// </summary>
|
/// <param name="taskNo">任务号</param>
|
/// <param name="userId">操作人(下游系统时为空)</param>
|
void ArrivalSuccess2(string taskNo, int userId);
|
|
}
|
}
|