using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 删除命令 /// public abstract class DeleteDataCommand { protected DeleteDataCommand() { Ids = []; } [Required] public List Ids { get; set; } } }