using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.Mobox3.AnGang.Dtos.Request {
public class AgvRequest {
///
/// hosttoagv上报任务状态
///
public class AgvTaskState {
public int state { get; set; }
public string task_no { get; set; }
public string forklift_no { get; set; }
///
/// 安全门编号
///
public string lock_no { get; set; }
public string ext_data { get; set; }
}
public class SafetyInteractionInfo {
public int station_id { get; set; }
///
/// 请求上线/下线的的站台库位名称,例如work6、work8
///
public string station_name { get; set; }
///
/// 请求码
///
public string apply_code { get; set; }
public string task_no { set; get; }
}
public class orderStatusReportParme {
///
/// 订单ID
///
public int orderID { get; set; }
///
/// 订单名
///
public string orderName { get; set; }
///
/// 订单状态
///
public string orderStatus { get; set; }
///
/// agv车号列表
///
public string agvIDList { get; set; }
///
/// 优先级
///
public string priority { get; set; }
///
/// 订单当前的目的地
///
public string currentDes { get; set; }
///
/// 当前指令
///
public string currentCmd { get; set; }
///
/// 错误码
///
public int errorCode { get; set; }
///
/// 订单的截至时间
///
public string deadLine { get; set; }
///
/// 订单的创建时间
///
public string createdTime { get; set; }
///
/// 额外信息1
///
public string extraInfo1 { get; set; }
///
/// 额外信息2
///
public string extraInfo2 { get; set; }
}
}
}