mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 01:28:24 +08:00
Merge branch 'main' of https://github.com/mybatis-flex/mybatis-flex
This commit is contained in:
commit
bc93e99871
@ -68,7 +68,7 @@ public class OperatorQueryCondition extends QueryCondition {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getValue() {
|
public Object getValue() {
|
||||||
return WrapperUtil.getValues(childCondition);
|
return checkEffective() ? WrapperUtil.getValues(childCondition) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -71,7 +71,7 @@ public class OperatorSelectCondition extends QueryCondition {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getValue() {
|
public Object getValue() {
|
||||||
return queryWrapper.getAllValueArray();
|
return checkEffective() ? queryWrapper.getAllValueArray() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user