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.
29 lines
479 B
29 lines
479 B
using FluentValidation;
|
|
using System;
|
|
|
|
namespace Kean.Domain.Task.Commands
|
|
{
|
|
/// <summary>
|
|
/// 创建下架命令
|
|
/// </summary>
|
|
public class AutoPalletOutCommand : ICommand
|
|
{
|
|
public string Device
|
|
{ get; set; }
|
|
|
|
public string InfeedDevice
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public int GoodsId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Message
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|