using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.AGV
{
public class SendTask
{
///
/// 任务模板
///
public string modelProcessCode { get; set; }
///
/// 优先级
///
public int priority { get; set; }
///
/// 来源系统
///
public string fromSystem { get; set; }
///
/// 任务号
///
public string orderId { get; set; }
///
/// 订单明细
///
public taskOrderDetail orderDetail { get; set; }
}
public class taskOrderDetail
{
public string subOrderId { get; set; }
public string taskPath { get; set; }
public string shelfNumber { get; set; }
public string assignRobotIds { get; set; }
public string releaseRobot { get; set; }
public string deviceNum { get; set; }
public string loadType { get; set; }
public string robotType { get; set; }
public string extraInfo { get; set; }
public string shelfModel { get; set; }
}
}