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 ByIdDeleteInput : Input { [MinValue(0, ErrorMessage = "Id 必填")] public int Id { get; set; } } }