using Admin.NET.Core;
namespace Admin.NET.Application
{
///
/// 创建主任务、AGV任务输入参数
///
public class AssembleInteractiveInput
{
///
/// 下线口
///
public BlankingProductionLineEnum BlankingProductionLine { get; set; }
///
///
///
//public List destinations { get; set; }
}
///
///
///
public class AssembleDestinationsInput
{
///
/// 位置(起点)/ 位置(终点)
///
/// 001H01B0101
public string locationName { get; set; }
///
/// 取货动作:层数 / 放货动作:层数 2
///
/// Load cargo:00
public string operation { get; set; }
}
///
/// 更新任务输入参数
///
public class UpdateAssembleTaskInput
{
///
/// 任务号
///
public string TaskNo { get; set; }
///
/// 任务状态
///
public TaskStatusEnum TaskStatus { get; set; }
///
/// 设备任务状态
///
public TaskAssembleDodeviceStatusEnum TaskAssembleDodeviceStatus { get; set; }
///
/// 巷道
///
public int Aisle { get; set; }
}
///
/// 强制完成
///
public class FinishAssembleTaskInput
{
///
/// 任务号
///
public string TaskNo { get; set; }
}
///
///更新agv报错信息
///
public class UpdateAgvWaring
{
///
/// Id
///
public long Id { get; set; }
}
}