2025-06-16 17:24:23 +08:00

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