fix(frame): 注释掉查询参数过滤逻辑
- 注释掉 FrameServiceImpl 中对查询参数的遍历过滤逻辑- 避免因参数过滤导致的查询条件丢失问题
This commit is contained in:
@@ -1114,11 +1114,11 @@ public class FrameServiceImpl implements IFrameService {
|
|||||||
queryWrapper.select(select, aliasFlag);
|
queryWrapper.select(select, aliasFlag);
|
||||||
queryWrapper.setWhere(where -> {
|
queryWrapper.setWhere(where -> {
|
||||||
where.eq("is_deleted", 0);
|
where.eq("is_deleted", 0);
|
||||||
params.forEach((key, value) -> {
|
// params.forEach((key, value) -> {
|
||||||
if(select.contains(key)){
|
// if(select.contains(key)){
|
||||||
where.eq(key, value);
|
// where.eq(key, value);
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}).build();
|
}).build();
|
||||||
} else {//显示表-视图
|
} else {//显示表-视图
|
||||||
String dataSourcesConfigJsonStr = formEntity.getDataSourcesConfig();
|
String dataSourcesConfigJsonStr = formEntity.getDataSourcesConfig();
|
||||||
|
|||||||
Reference in New Issue
Block a user