Mapper中增加注解即可实现自定义sql
public interface SysCustomerConfigMapper extends BaseMapper<SysCustomerConfig> {
/**
* 根据条件查询客户设置信息
* @param sysCustomerConfigSel 客户查询条件
* @return 客户设置信息
*/
@InterceptorIgnore(tenantLine = "1")
List<SysCustomerConfig> selectSysCustomerConfigSel(SysCustomerConfigSelVo sysCustomerConfigSel);
}
标签:自定义,租户,sysCustomerConfigSel,plus,sql,mybatis From: https://www.cnblogs.com/abel-he/p/16996844.html