variables: # 自定义表前缀 tablePrefix: test1_ 配置了,table-prefix后 mybatis-plus的操作都会加上tb1前缀,并且实体类如果也想用这个前缀,需使用注解,keepGlobalPrefix=true @TableName(value = "user", keepGlobalPrefix = true) 之后mybatisplus自带的查询操作方法,都会加表前缀. 如果在mapper文件中使用table-p...
variables: # 自定义表前缀 tablePrefix: test1_ 配置了,table-prefix后 mybatis-plus的操作都会加上tb1前缀,并且实体类如果也想用这个前缀,需使用注解,keepGlobalPrefix=true @TableName(value = "user", keepGlobalPrefix = true) 之后mybatisplus自带的查询操作方法,都会加表前缀. 如果在mapper文件中使用table-p...