Commit b2b93e50 authored by 若依's avatar 若依 Committed by Gitee

!457 修改RedisCache方法形参命名

Merge pull request !457 from lu_ming/master
parents eaa12de7 098286fc
......@@ -213,12 +213,12 @@ public class RedisCache
* 删除Hash中的数据
*
* @param key
* @param mapkey
* @param hKey
*/
public void delCacheMapValue(final String key, final String hkey)
public void delCacheMapValue(final String key, final String hKey)
{
HashOperations hashOperations = redisTemplate.opsForHash();
hashOperations.delete(key, hkey);
hashOperations.delete(key, hKey);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment