forked from github/dataease
Merge pull request #10338 from dataease/pr@dev-v2@feat_filter
feat(仪表板): 新增批量获取数据集字段列表接口
This commit is contained in:
commit
952284eff2
@ -162,8 +162,8 @@ public class DatasetTableFieldManage {
|
||||
|
||||
public Map<String, List<DatasetTableFieldDTO>> selectByDatasetGroupIds(List<Long> ids) {
|
||||
Map<String, List<DatasetTableFieldDTO>> map = new HashMap<>();
|
||||
QueryWrapper<CoreDatasetTableField> wrapper = new QueryWrapper<>();
|
||||
for (Long id : ids) {
|
||||
QueryWrapper<CoreDatasetTableField> wrapper = new QueryWrapper<>();
|
||||
wrapper.eq("dataset_group_id", id);
|
||||
wrapper.eq("checked", true);
|
||||
wrapper.isNull("chart_id");
|
||||
|
Loading…
Reference in New Issue
Block a user