using Kean.Domain.Stock.Models;
using System.Collections.Generic;
namespace Kean.Domain.Stock.Events
{
///
/// 扫描入库执行时触发的事件
///
public class ScanInboundExecutingEvent : IEvent
{
///
/// 托盘条码
///
public string Barcode { get; set; }
///
/// 位置
///
public int Cell { get; set; }
///
/// 库存行
///
public IEnumerable Lines { get; set; }
///
/// 满载
///
public bool? Full { get; set; }
///
/// 操作者
///
public int Operator { get; set; }
///
/// 标签
///
public string Tag { get; set; }
}
}