using System;
using System.Collections.Generic;
using System.Text;
using static Model.InterFaceModel.RCSModel;
namespace WMS.IBLL.IBllTransServer
{
public interface IRcsServer
{
///
/// RCS叫桶(净桶和脏桶)
///
/// 库区
/// 叫料类型
///
public void GetPalletNo(string warehouseno, string type, out string palletno, out string locatno);
///
/// RCS叫桶(混料桶和下料桶)
///
/// 库区
/// 叫料类型
/// 叫料批次
///
public void GetPalletNo(string warehouseno, string type, string lotno, out string palletno, out string locatno);
///
/// 申请储位
///
///
///
public void ApplyLocatNo(string palletno, string type, out string locatno);
///
/// RCS生成任务
///
///
///
/// 起始位置
/// 目的位置
///
/// RCS地址
///
public string genAgvSchedulingTask(AgvTask agvtask, string url, ref genAgvSchedulingTaskRep cbrep);
}
}