Compare commits

..

No commits in common. "ef0dddf57213415dcb2eca69f672b0aa9b25c07d" and "a6c3aab30c77b03e7c3c6fc8c8dc5628b4ae008f" have entirely different histories.

1 changed files with 0 additions and 7 deletions

View File

@ -90,13 +90,6 @@ public class CorpInfoController {
}
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("删除")