|
@ -745,7 +745,7 @@ public class RedisKeys { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public static String getCustomerMenuList(String customerId, Integer type, String tableName) { |
|
|
public static String getCustomerMenuList(String customerId, Integer type, String tableName) { |
|
|
return getCustomerMenuListPrefix().concat(customerId).concat(":type:").concat(type.toString()).concat(":tableName:").concat(tableName); |
|
|
return getCustomerMenuListPrefix().concat("type:").concat(type.toString()).concat(":tableName:").concat(tableName).concat(customerId); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -753,7 +753,7 @@ public class RedisKeys { |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
public static String getCustomerMenuListPrefix() { |
|
|
public static String getCustomerMenuListPrefix() { |
|
|
return rootPrefix.concat("gov:access:nav:customerId:"); |
|
|
return rootPrefix.concat("gov:access:nav:"); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|