|
@@ -76,9 +76,10 @@ public class TenantInfoController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("查询机构产品")
|
|
|
- @GetMapping(value = "/queryTenantInfoSumm/{id}")
|
|
|
- public HttpResponseResult<TenantProductSumm> queryTenantInfoProductSumm(@ApiParam(value = "机构ID", required = true) @PathVariable("id") Integer id) {
|
|
|
- return succeed(tenantInfoService.queryTenantInfoProductSumm(id));
|
|
|
+ @GetMapping(value = "/queryTenantInfoSumm")
|
|
|
+ public HttpResponseResult<TenantProductSumm> queryTenantInfoProductSumm() {
|
|
|
+ Integer tenantId = TenantContextHolder.getTenantId();
|
|
|
+ return succeed(tenantInfoService.queryTenantInfoProductSumm(tenantId));
|
|
|
}
|
|
|
|
|
|
@ApiImplicitParams({
|