Merge branch 'framework' of https://gitee.com/ccnetcore/Yi into framework
This commit is contained in:
@@ -5,7 +5,6 @@ using Yi.RBAC.Domain.Dictionary.Entities;
|
|||||||
using Yi.Framework.Ddd.Services;
|
using Yi.Framework.Ddd.Services;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Yi.Framework.Ddd.Dtos;
|
using Yi.Framework.Ddd.Dtos;
|
||||||
using Yi.RBAC.Domain.Dictionary.Repositories;
|
|
||||||
|
|
||||||
namespace Yi.RBAC.Application.Dictionary
|
namespace Yi.RBAC.Application.Dictionary
|
||||||
{
|
{
|
||||||
@@ -19,8 +18,7 @@ namespace Yi.RBAC.Application.Dictionary
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查询
|
/// 查询
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Autowired]
|
|
||||||
private IDictionaryRepository _dictionaryRepository { get; set; }
|
|
||||||
public override async Task<PagedResultDto<DictionaryGetListOutputDto>> GetListAsync(DictionaryGetListInputVo input)
|
public override async Task<PagedResultDto<DictionaryGetListOutputDto>> GetListAsync(DictionaryGetListInputVo input)
|
||||||
{
|
{
|
||||||
int total = 0;
|
int total = 0;
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ using Cike.AutoWebApi.Setting;
|
|||||||
using Yi.RBAC.Application.Contracts.Dictionary.Dtos;
|
using Yi.RBAC.Application.Contracts.Dictionary.Dtos;
|
||||||
using Yi.RBAC.Domain.Dictionary.Entities;
|
using Yi.RBAC.Domain.Dictionary.Entities;
|
||||||
using Yi.Framework.Ddd.Services;
|
using Yi.Framework.Ddd.Services;
|
||||||
using Yi.RBAC.Domain.Dictionary.Repositories;
|
|
||||||
using Yi.Framework.Ddd.Dtos;
|
using Yi.Framework.Ddd.Dtos;
|
||||||
using SqlSugar;
|
using SqlSugar;
|
||||||
|
|
||||||
@@ -17,8 +16,6 @@ namespace Yi.RBAC.Application.Dictionary
|
|||||||
IDictionaryTypeService, IAutoApiService
|
IDictionaryTypeService, IAutoApiService
|
||||||
{
|
{
|
||||||
|
|
||||||
[Autowired]
|
|
||||||
private IDictionaryTypeRepository _dictionaryTypeRepository { get; set; }
|
|
||||||
|
|
||||||
public async override Task<PagedResultDto<DictionaryTypeGetListOutputDto>> GetListAsync(DictionaryTypeGetListInputVo input)
|
public async override Task<PagedResultDto<DictionaryTypeGetListOutputDto>> GetListAsync(DictionaryTypeGetListInputVo input)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Yi.Framework.Ddd.Dtos;
|
|
||||||
using Yi.Framework.Ddd.Dtos.Abstract;
|
|
||||||
using Yi.Framework.Ddd.Repositories;
|
|
||||||
using Yi.RBAC.Domain.Dictionary.Entities;
|
|
||||||
using Yi.RBAC.Domain.Identity.Entities;
|
|
||||||
|
|
||||||
namespace Yi.RBAC.Domain.Dictionary.Repositories
|
|
||||||
{
|
|
||||||
public interface IDictionaryRepository : IRepository<DictionaryEntity>
|
|
||||||
{
|
|
||||||
Task<PagedDto<DictionaryEntity>> SelectGetListAsync(DictionaryEntity input, IPagedAndSortedResultRequestDto pageInput);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Yi.Framework.Ddd.Dtos;
|
|
||||||
using Yi.Framework.Ddd.Dtos.Abstract;
|
|
||||||
using Yi.Framework.Ddd.Repositories;
|
|
||||||
using Yi.RBAC.Domain.Dictionary.Entities;
|
|
||||||
using Yi.RBAC.Domain.Identity.Entities;
|
|
||||||
|
|
||||||
namespace Yi.RBAC.Domain.Dictionary.Repositories
|
|
||||||
{
|
|
||||||
public interface IDictionaryTypeRepository : IRepository<DictionaryTypeEntity>
|
|
||||||
{
|
|
||||||
Task<PagedDto<DictionaryTypeEntity>> SelectGetListAsync(DictionaryTypeEntity input, IPagedAllResultRequestDto pageInput);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user