forked from fanruan/demo-tabledata-redis
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
292 B
11 lines
292 B
7 years ago
|
package com.fr.plugin.db.redis.core;
|
||
|
|
||
|
public class RedisConstants {
|
||
|
|
||
|
public static final String PLUGIN_ID = "com.fr.solution.plugin.db.redis.v10";
|
||
|
|
||
|
public static final int DEFAULT_DB_INDEX = 0;
|
||
|
|
||
|
public static final String[] DEFAULT_COLUMN_NAMES = new String[]{"text", "value"};
|
||
|
}
|