作者 “lumingsyc”

修改RedisCache方法形参命名

@@ -213,12 +213,12 @@ public class RedisCache @@ -213,12 +213,12 @@ public class RedisCache
213 * 删除Hash中的数据 213 * 删除Hash中的数据
214 * 214 *
215 * @param key 215 * @param key
216 - * @param mapkey 216 + * @param hKey
217 */ 217 */
218 - public void delCacheMapValue(final String key, final String hkey) 218 + public void delCacheMapValue(final String key, final String hKey)
219 { 219 {
220 HashOperations hashOperations = redisTemplate.opsForHash(); 220 HashOperations hashOperations = redisTemplate.opsForHash();
221 - hashOperations.delete(key, hkey); 221 + hashOperations.delete(key, hKey);
222 } 222 }
223 223
224 /** 224 /**