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

This commit is contained in:
zhangdaiscott 2021-08-17 13:50:02 +08:00
parent b05d9c84ae
commit 283205b44e
1 changed files with 1 additions and 1 deletions

View File

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