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

This commit is contained in:
zhangdaiscott
2021-08-17 13:48:26 +08:00
parent 1bbca48ba8
commit 0606aa560a

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);
}