using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.ShuttleModel { /// /// 添加容器存储任务 /// public class AddStorageTask { /// /// 认证令牌 /// public int Token { get; set; } /// /// 接入系统 /// public string AccessSystemIndex { get; set; } /// /// 任务ID /// public int taskId { get; set; } /// /// 容器编号 /// public string containerCode { get; set; } /// /// 长 /// public int containerLength { get; set; } /// /// 宽 /// public int containerWidth { get; set; } /// /// 高 /// public int containerHeight { get; set; } /// /// 优先级 /// public int priority { get; set; } /// /// 目标地址 /// public string destination { get; set; } } }