Browse Source

chore: like set

master
wangxiang 1 year ago
parent
commit
1636aedfe1
  1. 1
      kicc-platform/kicc-platform-biz/kicc-system-biz/src/main/java/com/cloud/kicc/system/devtools/controller/GencodeCustomObjController.java

1
kicc-platform/kicc-platform-biz/kicc-system-biz/src/main/java/com/cloud/kicc/system/devtools/controller/GencodeCustomObjController.java

@ -36,6 +36,7 @@ public class GencodeCustomObjController { @@ -36,6 +36,7 @@ public class GencodeCustomObjController {
private LambdaQueryWrapper<GencodeCustomObj> getQueryWrapper(GencodeCustomObj gencodeCustomObj) {
return new LambdaQueryWrapper<GencodeCustomObj>()
.like(StrUtil.isNotBlank(gencodeCustomObj.getLabel()), GencodeCustomObj::getLabel, gencodeCustomObj.getLabel())
.like(StrUtil.isNotBlank(gencodeCustomObj.getValue()), GencodeCustomObj::getValue, gencodeCustomObj.getValue())
.orderByAsc(GencodeCustomObj::getSort);
}

Loading…
Cancel
Save