mybatis-plus 多租户 自定义sql
Mapper中增加注解即可实现自定义sql
public interface SysCustomerConfigMapper extends BaseMapper<SysCustomerConfig> {
/**
* 根据条件查询客户设置信息
* @param sysCustomerConfigSel 客户查询条件
* @return 客户设置信息
*/
@InterceptorIgnore(tenantLine = "1")
List<SysCustomerConfig> selectSysCustomerConfigSel(SysCustomerConfigSelVo sysCustomerConfigSel);
}