using Kean.Domain.Task.Models; namespace Kean.Domain.Task.Events { /// /// 创建直接出库命令执行时触发的事件 /// public class DirectOutboundExecutingEvent : IEvent { /// /// 托盘条码 /// public string Barcode { get; set; } /// /// 操作位置 /// public Cell Original { get; set; } /// /// 目标位置 /// public Station Destination { get; set; } /// /// 优先级 /// public int? Priority { get; set; } /// /// 操作者 /// public int Operator { get; set; } /// /// 是否手动 /// public bool Manual { get; set; } /// /// 标签 /// public string Tag { get; set; } /// /// 前续连接 /// public int? Previous { get; set; } } }