forked from fanruan/finekit
19 lines
354 B
19 lines
354 B
5 years ago
|
package com.fanruan.api.cluster.state;
|
||
|
|
||
|
import com.fr.collections.config.redis.RedisCollectionConfig;
|
||
|
|
||
|
/**
|
||
|
* Redis 集合相关配置
|
||
|
* @author Dylan.Liu
|
||
|
* @version 10.0
|
||
|
* Created by Dylan.Liu on 2019/12/3
|
||
|
*/
|
||
|
public class BaseRedisCollectionConfig extends RedisCollectionConfig {
|
||
|
|
||
|
public BaseRedisCollectionConfig() {
|
||
|
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
}
|