16 lines
345 B
C#
16 lines
345 B
C#
|
using Syc.Core.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Syc.Abp.Application.Contracts
|
|||
|
{
|
|||
|
public class ByIdsDeleteInput:Input
|
|||
|
{
|
|||
|
[MinItemsCount(1,ErrorMessage = "至少选中一项")]
|
|||
|
public List<long> Ids { get; set; }
|
|||
|
}
|
|||
|
}
|