using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_DTO.TaskInfo
|
{
|
public class DeliveryPlan
|
{
|
public bool isUpKiln { get; set; } = false; // 是否为上窑任务
|
public string startPlan { get; set; } // 起始库存位置
|
public string endPlan { get; set; } // 终点库存位置
|
public string CarId { get; set; }
|
public bool isQuit { get; set; } = true; // 是否为异常出库
|
|
public bool isAtomatic { get; set; } = true; // 是否为AGV入库, true:agv入库、false:手动入库
|
}
|
}
|