mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 18:46:36 +08:00
@@ -112,7 +112,8 @@ public class GlobalDictServiceImpl extends BaseService<GlobalDict, Long> impleme
|
||||
|
||||
@Override
|
||||
public List<GlobalDict> getGlobalDictList(GlobalDict filter, String orderBy) {
|
||||
return globalDictMapper.getGlobalDictList(filter, orderBy);
|
||||
List<Map<String, Object>> dictList = globalDictMapper.getGlobalDictList(filter, orderBy);
|
||||
return dictList.stream().map(c -> JSON.parseObject(JSON.toJSONString(c), GlobalDict.class)).collect(Collectors.toList());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user