using FluentValidation; using FluentValidation.Results; namespace Kean.Domain.Basic.Commands { /// /// 创建 /// public class ModifyItemCommand : ICommand { [Output] public int ItemListId { get; set; } public int ItemId { get; set; } public string ItemCode { get; set; } /// /// 名称 /// public string ItemName { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// /// public string Remark { get; set; } } }