|
|
@ -645,7 +645,7 @@ public class RedisKeys { |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public static String getOrgTreeCacheKey(String agencyId,String customerId) { |
|
|
|
return rootPrefix.concat("org:temp:orgtree").concat(customerId).concat(StrConstant.COLON).concat(agencyId); |
|
|
|
return rootPrefix.concat("org:temp:orgtree:").concat(customerId).concat(StrConstant.COLON).concat(agencyId); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -655,7 +655,7 @@ public class RedisKeys { |
|
|
|
*/ |
|
|
|
public static String getOrgTreeCachePrexKey(String customerId) { |
|
|
|
// return "epmet:org:temp:orgtree".concat(StrConstant.STAR);
|
|
|
|
return rootPrefix.concat("org:temp:orgtree").concat(customerId).concat(StrConstant.STAR); |
|
|
|
return rootPrefix.concat("org:temp:orgtree:").concat(customerId).concat(StrConstant.STAR); |
|
|
|
} |
|
|
|
|
|
|
|
public static String getHouseInfoCacheKey(String houseId,String customerId){ |
|
|
|