|
@@ -31,7 +31,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return Hash值
|
|
|
*/
|
|
|
public static Object get(@NonNull Serializable id, @NonNull String key) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(TYPE, id, key);
|
|
|
+ return RedisDailyHashHolder.get(TYPE, id, key);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -44,7 +44,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static Object get(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull String key) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(template, TYPE, id, key);
|
|
|
+ return RedisDailyHashHolder.get(template, TYPE, id, key);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -55,7 +55,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return Hash值列表
|
|
|
*/
|
|
|
public static List<?> get(@NonNull Serializable id, @NonNull String... keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.get(TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -68,7 +68,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static List<?> get(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull String... keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(template, TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.get(template, TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -79,7 +79,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return Hash值列表
|
|
|
*/
|
|
|
public static List<?> get(@NonNull Serializable id, @NonNull Collection<String> keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.get(TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -92,7 +92,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static List<?> get(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull Collection<String> keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.get(template, TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.get(template, TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -103,7 +103,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return true/false
|
|
|
*/
|
|
|
public static boolean set(@NonNull Serializable id, @NonNull Object... array) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.set(TYPE, id, array);
|
|
|
+ return RedisDailyHashHolder.set(TYPE, id, array);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -114,7 +114,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return true/false
|
|
|
*/
|
|
|
public static boolean set(@NonNull Serializable id, @NonNull Map<String, ?> map) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.set(TYPE, id, map);
|
|
|
+ return RedisDailyHashHolder.set(TYPE, id, map);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -127,7 +127,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static boolean set(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull Object... array) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.set(template, TYPE, id, array);
|
|
|
+ return RedisDailyHashHolder.set(template, TYPE, id, array);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -140,7 +140,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static boolean set(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull Map<String, ?> map) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.set(template, TYPE, id, map);
|
|
|
+ return RedisDailyHashHolder.set(template, TYPE, id, map);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -151,7 +151,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return 增/减后数值
|
|
|
*/
|
|
|
public static long increment(@NonNull Serializable id, @NonNull String key) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.increment(TYPE, id, key);
|
|
|
+ return RedisDailyHashHolder.increment(TYPE, id, key);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -163,7 +163,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return 增/减后数值
|
|
|
*/
|
|
|
public static long increment(@NonNull Serializable id, @NonNull String key, long delta) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.increment(TYPE, id, key, delta);
|
|
|
+ return RedisDailyHashHolder.increment(TYPE, id, key, delta);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -176,7 +176,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static long increment(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull String key) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.increment(template, TYPE, id, key);
|
|
|
+ return RedisDailyHashHolder.increment(template, TYPE, id, key);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -190,7 +190,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static long increment(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull String key, long delta) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.increment(template, TYPE, id, key, delta);
|
|
|
+ return RedisDailyHashHolder.increment(template, TYPE, id, key, delta);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -201,7 +201,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return 成功删除数量
|
|
|
*/
|
|
|
public static long delete(Serializable id, @NonNull String... keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.delete(TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.delete(TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -214,7 +214,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static long delete(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull String... keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.delete(template, TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.delete(template, TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -225,7 +225,7 @@ public final class RedisUserDailyHashHolder {
|
|
|
* @return 成功删除数量
|
|
|
*/
|
|
|
public static long delete(@NonNull Serializable id, @NonNull Collection<String> keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.delete(TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.delete(TYPE, id, keys);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -238,6 +238,6 @@ public final class RedisUserDailyHashHolder {
|
|
|
*/
|
|
|
public static long delete(@NonNull RedisTemplate<String, ?> template, @NonNull Serializable id,
|
|
|
@NonNull Collection<String> keys) {
|
|
|
- return com.chelvc.framework.redis.context.RedisDailyHashHolder.delete(template, TYPE, id, keys);
|
|
|
+ return RedisDailyHashHolder.delete(template, TYPE, id, keys);
|
|
|
}
|
|
|
}
|