feat(CorpInfoController): 添加查询当前登录租户企业详情接口
parent
c4da5decd4
commit
88f58d580f
|
|
@ -90,6 +90,13 @@ public class CorpInfoController {
|
||||||
}
|
}
|
||||||
return SingleResponse.of(corpInfoService.info(id));
|
return SingleResponse.of(corpInfoService.info(id));
|
||||||
}
|
}
|
||||||
|
@ApiOperation("查询当前登录租户自身企业详情")
|
||||||
|
@PostMapping("/info/self")
|
||||||
|
public SingleResponse<CorpInfoCO> getSelfInfo() {
|
||||||
|
SSOUser ssoUser = AuthContext.getCurrentUser();
|
||||||
|
Long tenantId = ssoUser.getTenantId();
|
||||||
|
return SingleResponse.of(corpInfoService.info(tenantId));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@ApiOperation("删除")
|
@ApiOperation("删除")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue