|
@@ -1,7 +1,9 @@
|
|
package com.zhongzheng.modules.system.mapper;
|
|
package com.zhongzheng.modules.system.mapper;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.zhongzheng.modules.system.domain.SysConfig;
|
|
import com.zhongzheng.modules.system.domain.SysConfig;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 参数配置 数据层
|
|
* 参数配置 数据层
|
|
@@ -10,4 +12,6 @@ import com.zhongzheng.modules.system.domain.SysConfig;
|
|
*/
|
|
*/
|
|
public interface SysConfigMapper extends BaseMapper<SysConfig> {
|
|
public interface SysConfigMapper extends BaseMapper<SysConfig> {
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
|
+ SysConfig getSysConfigByKeyTenant(@Param("key") String key,@Param("tenantId") Long tenantId);
|
|
}
|
|
}
|