Commit e7bffc2c by guoxw

物理表异常字段查询和同步

parent eac8f075
......@@ -72,7 +72,8 @@ public class DictDataController {
final LambdaQueryWrapper<DataDict> wrapper = Wrappers.lambdaQuery(DataDict.class);
wrapper.eq(DataDict::getType, "area")
.like(StringUtils.isNotBlank(param.getValue()), DataDict::getValue, param.getValue())
.like(StringUtils.isNotBlank(param.getLabel()), DataDict::getLabel, param.getLabel());
.like(StringUtils.isNotBlank(param.getLabel()), DataDict::getLabel, param.getLabel())
.orderByAsc(DataDict::getValue);
Page<DataDict> page = Page.of(param.getPageNum(), param.getPageSize());
page = dictService.page(page, wrapper);
return param.convert(page);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment