14 lines
292 B
C#
14 lines
292 B
C#
using Syc.Core.Tools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Syc.Basic.Web.WMS.Dtos.User
|
|
{
|
|
public class UserRemoveDto:Input
|
|
{
|
|
[MinItemsCount(1,ErrorMessage = "至少选中一条数据")]
|
|
public int[] Ids { get; set; }
|
|
}
|
|
}
|