using Kean.Domain.Task.Models;
using System;
namespace Kean.Domain.Task.Events
{
///
/// 创建输送命令成功时触发的事件
///
public class BypassSuccessEvent : IEvent
{
///
/// 标识
///
public int Id { get; set; }
///
/// 托盘条码
///
public string Barcode { get; set; }
///
/// 负载规格
///
public int? Spec { get; set; }
///
/// 操作位置
///
public Station 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; }
///
/// 时间戳
///
public DateTime Timestamp { get; set; }
}
}