修改表前缀
This commit is contained in:
parent
958ec34e53
commit
e0baf0412b
|
|
@ -57,6 +57,6 @@ mybatis-plus:
|
||||||
global-config:
|
global-config:
|
||||||
banner: false
|
banner: false
|
||||||
db-config:
|
db-config:
|
||||||
table-prefix: ls_ # 设置表前缀
|
table-prefix: la_ # 设置表前缀
|
||||||
configuration-properties:
|
configuration-properties:
|
||||||
prefix: ls_ # 自定义表前缀标签${prefix}
|
prefix: la_ # 自定义表前缀标签${prefix}
|
||||||
|
|
@ -18,7 +18,7 @@ public class GlobalConfig {
|
||||||
public static String secret = "UVTIyzCy";
|
public static String secret = "UVTIyzCy";
|
||||||
|
|
||||||
// Mysql表前缀
|
// Mysql表前缀
|
||||||
public static String tablePrefix = "ls_";
|
public static String tablePrefix = "la_";
|
||||||
|
|
||||||
// Redis键前缀
|
// Redis键前缀
|
||||||
public static String redisPrefix = "Like:";
|
public static String redisPrefix = "Like:";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue