sunpengfei
2025-08-14 b495fa9f03462cf6007e1e035a7ed8abe5382c1c
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.Role])]
    public class SetRoleIsDisabledCommand : SetIsDisabledCommand
    {
 
    }
}