Showing
1 changed file
with
0 additions
and
5 deletions
... | ... | @@ -6,8 +6,6 @@ import com.google.common.collect.Lists; |
6 | 6 | import com.google.common.collect.Sets; |
7 | 7 | import lombok.RequiredArgsConstructor; |
8 | 8 | import org.apache.commons.lang3.StringUtils; |
9 | -import org.springframework.cache.annotation.CacheEvict; | |
10 | -import org.springframework.cache.annotation.Caching; | |
11 | 9 | import org.springframework.stereotype.Service; |
12 | 10 | import org.springframework.transaction.annotation.Transactional; |
13 | 11 | import org.springframework.util.Assert; |
... | ... | @@ -155,9 +153,6 @@ public class TkOrganizationServiceImpl extends AbstractBaseService<OrganizationM |
155 | 153 | .lambda() |
156 | 154 | .in(TkUserOrganizationMappingEntity::getOrganizationId, organizationIds)); |
157 | 155 | } |
158 | - @Caching(evict= { | |
159 | - @CacheEvict(cacheNames = FastIotConstants.CacheConfigKey.ORGANIZATION, key = "{#tenantId, #organizationDTO.id}") | |
160 | - }) | |
161 | 156 | @Override |
162 | 157 | @Transactional |
163 | 158 | public OrganizationDTO updateOrganization( | ... | ... |