16 lines
325 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
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; }
}
}