修改表前缀

This commit is contained in:
TinyAnts 2022-08-16 17:36:50 +08:00
parent 958ec34e53
commit e0baf0412b
2 changed files with 3 additions and 3 deletions

View File

@ -57,6 +57,6 @@ mybatis-plus:
global-config:
banner: false
db-config:
table-prefix: ls_ # 设置表前缀
table-prefix: la_ # 设置表前缀
configuration-properties:
prefix: ls_ # 自定义表前缀标签${prefix}
prefix: la_ # 自定义表前缀标签${prefix}

View File

@ -18,7 +18,7 @@ public class GlobalConfig {
public static String secret = "UVTIyzCy";
// Mysql表前缀
public static String tablePrefix = "ls_";
public static String tablePrefix = "la_";
// Redis键前缀
public static String redisPrefix = "Like:";