using System;
namespace Kean.Domain.Stock.Commands
{
///
/// 重定位命令
///
public class RelocateCommand : ICommand
{
///
/// 事务
///
public string Transaction { get; set; }
///
/// 托盘条码
///
public string Barcode { get; set; }
///
/// 负载规格
///
public int? Spec { 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; }
}
}