Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/IServices/IRbacRoleAppService.cs 1.04 KB
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  using FoodLabeling.Application.Contracts.Dtos.RbacRole;
  using FoodLabeling.Application.Contracts.Dtos.Common;
  using Volo.Abp.Application.Dtos;
  using Volo.Abp.Application.Services;
  
  namespace FoodLabeling.Application.Contracts.IServices;
  
  /// <summary>
  /// 角色管理接口(仅用于食品标签-美国版对外)
  /// </summary>
  public interface IRbacRoleAppService : IApplicationService
  {
      /// <summary>
      /// 角色分页列表
      /// </summary>
      Task<PagedResultWithPageDto<RbacRoleGetListOutputDto>> GetListAsync(RbacRoleGetListInputVo input);
  
      /// <summary>
      /// 角色详情
      /// </summary>
      Task<RbacRoleGetOutputDto> GetAsync(Guid id);
  
      /// <summary>
      /// 新增角色
      /// </summary>
      Task<RbacRoleGetOutputDto> CreateAsync(RbacRoleCreateInputVo input);
  
      /// <summary>
      /// 编辑角色
      /// </summary>
      Task<RbacRoleGetOutputDto> UpdateAsync(Guid id, RbacRoleUpdateInputVo input);
  
      /// <summary>
      /// 删除角色(逻辑删除)
      /// </summary>
      Task DeleteAsync(List<Guid> ids);
  }