forked from github/dataease
feat(仪表板): 新增批量获取数据集字段列表接口
This commit is contained in:
parent
18c34411b1
commit
e328324147
@ -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