组织分页、用户分页接口添加名称拼音模糊查询

This commit is contained in:
yangsb
2024-03-15 15:58:31 +08:00
parent 9df3afcc73
commit c235cb07f3
9 changed files with 98 additions and 4 deletions
@@ -132,4 +132,16 @@ public class LambdaQueryWrapperX<T> extends LambdaQueryWrapper<T> {
return this;
}
@Override
public LambdaQueryWrapperX<T> or(boolean condition) {
super.or(condition);
return this;
}
@Override
public LambdaQueryWrapperX<T> or() {
super.or();
return this;
}
}