feat: 添加abp的后台管理

This commit is contained in:
橙子
2023-12-11 22:14:13 +08:00
parent 27a2849619
commit aa49398c29
20 changed files with 433 additions and 23 deletions

View File

@@ -62,6 +62,11 @@ namespace Yi.Framework.Ddd.Application
{
}
public override Task<PagedResultDto<TGetListOutputDto>> GetListAsync(TGetListInput input)
{
throw new NotImplementedException($"【{typeof(TEntity)}】实体的CrudAppService查询为具体业务通用查询几乎无实际场景请重写实现");
}
/// <summary>
/// 偷梁换柱
/// </summary>
@@ -72,7 +77,7 @@ namespace Yi.Framework.Ddd.Application
{
await Repository.DeleteManyAsync(id);
}
[RemoteService(isEnabled:false)]
[RemoteService(isEnabled: false)]
public override Task DeleteAsync(TKey id)
{
return base.DeleteAsync(id);