|
@@ -13,6 +13,7 @@ using Middleware;
|
|
|
using MiniExcelLibs;
|
|
|
using Model;
|
|
|
using Model.Base;
|
|
|
+using Model.Kxs;
|
|
|
using Services;
|
|
|
using Util;
|
|
|
using Vo;
|
|
@@ -60,19 +61,22 @@ namespace Controllers
|
|
|
|
|
|
[AllowAnonymous]
|
|
|
[HttpGet("/feign/user/test")]
|
|
|
- public async Task<SysUserVo> Test([FromQuery] long id)
|
|
|
+ public SysUserVo Test([FromQuery] long id)
|
|
|
{
|
|
|
- var info = UserService.GetFirst(m => m.userId == id).Adapt<SysUserVo>();
|
|
|
- var dept = await SysDept.GetDeptInfo(info.deptId);
|
|
|
- info.deptInfo = dept;
|
|
|
+ var info = UserService.Queryable()
|
|
|
+ .Includes(m => m.deptJoin)
|
|
|
+ .CrossQuery(typeof(Users), "kxs")
|
|
|
+ .Includes(m => m.user)
|
|
|
+ .First(m => m.userId == id)
|
|
|
+ .Adapt<SysUserVo>() ?? new SysUserVo();
|
|
|
return info;
|
|
|
}
|
|
|
|
|
|
[AllowAnonymous]
|
|
|
[HttpGet("/feign/user/testlist")]
|
|
|
- public async Task<PagedInfo<SysUserVo>> TestList()
|
|
|
+ public PagedInfo<SysUserVo> TestList()
|
|
|
{
|
|
|
- var response = await UserService.TestList(SysDept);
|
|
|
+ var response = UserService.TestList(SysDept);
|
|
|
return response;
|
|
|
}
|
|
|
|