We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29129cf commit 3868e8eCopy full SHA for 3868e8e
APIJSONORM/pom.xml
@@ -5,7 +5,7 @@
5
6
<groupId>apijson.orm</groupId>
7
<artifactId>apijson-orm</artifactId>
8
- <version>4.7.2</version>
+ <version>4.8.0</version>
9
<packaging>jar</packaging>
10
11
<name>APIJSONORM</name>
APIJSONORM/src/main/java/apijson/orm/AbstractVerifier.java
@@ -282,7 +282,7 @@ public boolean verifyAccess(SQLConfig config) throws Exception {
282
//不能在Visitor内null -> [] ! 否则会导致某些查询加上不需要的条件!
283
List<Object> list = visitor.getContactIdList() == null
284
? new ArrayList<Object>() : new ArrayList<Object>(visitor.getContactIdList());
285
- if (role == CIRCLE) {
+ if (CIRCLE.equals(role)) {
286
list.add(visitorId);
287
}
288
0 commit comments