Compare commits

..

No commits in common. "38b49a9c7c2c3978ae781cca4fdb671b2edd09be" and "abc03976f633b6c3807cab2421805046c5d665df" 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("查询当前登录租户自身企业详情")
@GetMapping("/info/self")
public SingleResponse<CorpInfoCO> getSelfInfo() {
SSOUser ssoUser = AuthContext.getCurrentUser();
Long tenantId = ssoUser.getTenantId();
return SingleResponse.of(corpInfoService.info(tenantId));
}
@ApiOperation("删除")