|
|
|
@@ -113,11 +113,9 @@ public class BaseController { |
|
|
|
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); |
|
|
|
String tenantId = (String) request.getAttribute(Constant.TENANT_ID); |
|
|
|
String parentTenantId = (String) request.getAttribute(Constant.PARENT_TENANT_ID); |
|
|
|
// boolean isChildMall = (boolean)request.getAttribute(Constant.IS_CHILD_MALL); |
|
|
|
TenantEntity tenantEntity = new TenantEntity() ; |
|
|
|
tenantEntity.setTenantId(tenantId); |
|
|
|
tenantEntity.setParentTenantId(parentTenantId); |
|
|
|
// tenantEntity.setChildMall(isChildMall); |
|
|
|
return tenantEntity; |
|
|
|
} |
|
|
|
|
|
|
|
|