refactor: 重构偏好模块.

This commit is contained in:
lijiahang
2023-12-19 17:48:48 +08:00
parent 581c14d8d7
commit bb83fe447b
24 changed files with 237 additions and 211 deletions

View File

@@ -517,7 +517,7 @@ public class RedisMaps extends RedisUtils {
* @param <V> V
* @return entity
*/
public static <K, V> Map<String, V> entitiesJson(String key, Class<V> clazz) {
public static <V> Map<String, V> entitiesJson(String key, Class<V> clazz) {
return entitiesJson(key, Function.identity(), clazz);
}