修复flex版本对应映射失败问题

Signed-off-by: orange-form <3510245832@qq.com>
This commit is contained in:
orange-form
2024-07-26 03:58:44 +00:00
committed by Gitee
parent ae347af56c
commit cbeb6bef08

View File

@@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.List;
import java.util.Map;
/**
* 全局字典数据操作访问接口。
@@ -30,5 +31,5 @@ public interface GlobalDictMapper extends BaseDaoMapper<GlobalDict> {
+ "</if>"
+ "<if test=\"orderBy != null and orderBy != ''\"> ORDER BY ${orderBy} </if>"
+ "</script>")
List<GlobalDict> getGlobalDictList(@Param("filter") GlobalDict filter, @Param("orderBy") String orderBy);
List<Map<String, Object>> getGlobalDictList(@Param("filter") GlobalDict filter, @Param("orderBy") String orderBy);
}