Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IOperationLogService.cs 380 Bytes
3ae287f3   “wangming”   项目初始化,准备开始开发
1
2
3
4
5
6
7
8
9
10
11
12
13
  using Yi.Framework.Ddd.Application.Contracts;
  using Yi.Framework.Rbac.Application.Contracts.Dtos.OperLog;
  
  namespace Yi.Framework.Rbac.Application.Contracts.IServices
  {
      /// <summary>
      /// OperationLog服务抽象
      /// </summary>
      public interface IOperationLogService : IYiCrudAppService<OperationLogGetListOutputDto, Guid, OperationLogGetListInputVo>
      {
  
      }
  }