mybatisPlus升级,拦截器排除写法修改

pull/2942/head
zhangdaiscott 2021-08-17 13:48:26 +08:00
parent 1bbca48ba8
commit 0606aa560a
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public interface BaseCommonMapper {
* @param dto
*/
//@SqlParser(filter=true)
@InterceptorIgnore
@InterceptorIgnore(illegalSql = "true", tenantLine = "true")
void saveLog(@Param("dto")LogDTO dto);
}