冲突修改

feature-flyModify
陈伟 2025-06-12 14:00:26 +08:00
parent db582313f3
commit c213a43a48
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ namespace OpenAuth.App.ServiceApp
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public async Task<Response<List<LasaWorkspace>>> GetWorkspaceList(string key)
public async Task<Response<List<dynamic>>> GetWorkspaceList(string key)
{
RefAsync<int> totalCount = 0;
using (var db = UnitWork.CreateContext())
@ -211,7 +211,7 @@ namespace OpenAuth.App.ServiceApp
u.Name
})
.ToListAsync();
return new Response<List<LasaWorkspace>>
return new Response<List<dynamic>>
{
Result = list
};