namespace SlnMesnac.Model.dto.webapi
{
//RCS调用WCS接口参数
public class continueTaskDto
{
///
/// 请求编号,每个请求都要一个唯一编号, 同一个请求重复提交, 使用同一编号。;
///
public string reqCode { get; set; }
///
/// 请求时间截 格式: “yyyy-MM-dd HH:mm:ss”。
///
public string reqTime { get; set; }
///
/// 客户端编号,如PDA,HCWMS等。
///
public string clientCode { get; set; }
///
/// 令牌号, 由调度系统颁发
///
public string tokenCode { get; set; }
///
/// 工作位,与RCS-2000端配置的位置名称一致。
///
public string wbCode { get; set; }
///
/// 货架号,采用货架号触发的方式。
///
public string podCode { get; set; }
public string agvCode { get; set; }
public string taskCode { get; set; }
public string taskSeq { get; set; }
public string nextPositionCode { get; set; }
}
public class ReponseagvcontinueTaskDto
{
///
/// 返回码
///
public string code { get; set; }
///
/// 返回消息
///
public string message { get; set; }
///
/// 请求编号
///
public string reqCode { get; set; }
}
}