16 lines
325 B
C#
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; }
|
|
}
|
|
}
|