sunpengfei
2025-08-07 313c5cbe5c63fa07f78fa24d8cc33b75435a266f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using MediatR;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 删除菜单
    /// </summary>
    [Resource([EnumResourceController.Menu])]
    public class DeleteMenuCommand : DeleteDataCommand, IRequest<int>
    {
 
    }
}