|
|
@@ -2,6 +2,7 @@ package org.sky.system.mapper;
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.sky.core.tenant.annotation.TenantIgnore;
|
|
|
import org.sky.system.pojo.entity.DictBiz;
|
|
|
import org.sky.system.pojo.vo.DictBizVO;
|
|
|
@@ -49,4 +50,6 @@ public interface DictBizMapper extends BaseMapper<DictBiz> {
|
|
|
*/
|
|
|
List<DictBizVO> parentTree();
|
|
|
|
|
|
+ @TenantIgnore
|
|
|
+ String getByCodeAndDictValue(@Param("code") String code, @Param("dictValue") String dictValue);
|
|
|
}
|