You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.2 KiB
58 lines
1.2 KiB
using Kean.Domain.Stock.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kean.Domain.Stock.Commands
|
|
{
|
|
/// <summary>
|
|
/// 记录命令
|
|
/// </summary>
|
|
public class RecordCommand : ICommand
|
|
{
|
|
/// <summary>
|
|
/// 事务
|
|
/// </summary>
|
|
public string Transaction { get; set; }
|
|
/// <summary>
|
|
/// 托盘条码
|
|
/// </summary>
|
|
public string Barcode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始位置
|
|
/// </summary>
|
|
public int Original { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标位置
|
|
/// </summary>
|
|
public int Destination { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作者
|
|
/// </summary>
|
|
public int Operator { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签
|
|
/// </summary>
|
|
public string Tag { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
public DateTime BeginTime
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 完成时间
|
|
/// </summary>
|
|
public DateTime EndTime
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|