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
977 B
58 lines
977 B
3 months ago
|
using FluentValidation;
|
||
|
using FluentValidation.Results;
|
||
|
|
||
|
namespace Kean.Domain.Basic.Commands
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 创建
|
||
|
/// </summary>
|
||
|
public class ModifyItemCommand : ICommand
|
||
|
{
|
||
|
[Output]
|
||
|
public int ItemListId
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
public int ItemId
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
public string ItemCode
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string ItemName
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
public string Code
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string Name
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public string Remark
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
}
|
||
|
}
|