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