using System; namespace Kean.Domain.Stock.Events { /// /// 重定位成功时触发的事件 /// public class RelocateSuccessEvent : IEvent { /// /// 事务 /// public string Transaction { get; set; } /// /// 托盘条码 /// public string Barcode { get; set; } /// /// 起始位置 /// public int Original { get; set; } /// /// 目标位置 /// public int Destination { get; set; } /// /// 操作者 /// public int Operator { get; set; } /// /// 标签 /// public string Tag { get; set; } /// /// 时间戳 /// public (DateTime, DateTime) Timestamp { get; set; } } }