|
|
@ -34,6 +34,7 @@ public class CustomerOrgRedis { |
|
|
|
|
|
|
|
private static CustomerOrgRedis customerOrgRedis; |
|
|
|
|
|
|
|
|
|
|
|
@PostConstruct |
|
|
|
public void init() { |
|
|
|
customerOrgRedis = this; |
|
|
@ -90,4 +91,13 @@ public class CustomerOrgRedis { |
|
|
|
return agencyInfoResult.getData(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:删除网格缓存 |
|
|
|
* @param gridId |
|
|
|
*/ |
|
|
|
public static void delGridInfo(String gridId) { |
|
|
|
String key = RedisKeys.getGridInfoKey(gridId); |
|
|
|
customerOrgRedis.redisUtils.delete(key); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|