fix 修复 代码生成 mapper 被租户插件拦截问题

This commit is contained in:
疯狂的狮子Li 2023-02-18 18:15:25 +08:00
parent e7dc439ed3
commit c6746ed788
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import java.util.List;
* *
* @author Lion Li * @author Lion Li
*/ */
@InterceptorIgnore(dataPermission = "true") @InterceptorIgnore(dataPermission = "true", tenantLine = "true")
public interface GenTableColumnMapper extends BaseMapperPlus<GenTableColumnMapper, GenTableColumn, GenTableColumn> { public interface GenTableColumnMapper extends BaseMapperPlus<GenTableColumnMapper, GenTableColumn, GenTableColumn> {
/** /**
* 根据表名称查询列信息 * 根据表名称查询列信息

View File

@ -13,7 +13,7 @@ import java.util.List;
* *
* @author Lion Li * @author Lion Li
*/ */
@InterceptorIgnore(dataPermission = "true") @InterceptorIgnore(dataPermission = "true", tenantLine = "true")
public interface GenTableMapper extends BaseMapperPlus<GenTableMapper, GenTable, GenTable> { public interface GenTableMapper extends BaseMapperPlus<GenTableMapper, GenTable, GenTable> {
/** /**