Skip to content

Commit

Permalink
2.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sim-wangyan committed Apr 25, 2024
1 parent f6d4a85 commit d98cfbb
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.xream.sqli</groupId>
<artifactId>sqli-parent</artifactId>
<packaging>pom</packaging>
<version>2.1.9</version>
<version>2.1.10</version>

<name>sqli-parent</name>
<description>http://sqli.xream.io</description>
Expand All @@ -24,7 +24,7 @@
<maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
<maven.test.skip>true</maven.test.skip>
<sqli.annotation.version>1.0.0</sqli.annotation.version>
<sqli.version>2.1.9</sqli.version>
<sqli.version>2.1.10</sqli.version>
<jackson.version>2.17.0</jackson.version>
<slf4j.version>2.0.13</slf4j.version>
</properties>
Expand All @@ -33,7 +33,7 @@
<connection>scm:git:https://github.com/x-ream/sqli</connection>
<developerConnection>scm:git:https://github.com/x-ream/sqli</developerConnection>
<url>scm:git:https://github.com/x-ream/sqli</url>
<tag>2.1.9</tag>
<tag>2.1.10</tag>
</scm>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion sqli-builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sqli-parent</artifactId>
<groupId>io.xream.sqli</groupId>
<version>2.1.9</version>
<version>2.1.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
40 changes: 20 additions & 20 deletions sqli-builder/src/main/java/io/xream/sqli/builder/QB.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,24 +147,24 @@ public Q<T> build() {
return this.q;
}

public QB<T> eq(String key, Object value) {
return (QB<T>) super.eq(key, value);
public QB<T> eq(String property, Object value) {
return (QB<T>) super.eq(property, value);
}

public QB<T> gt(String key, Object value) {
return (QB<T>) super.gt(key, value);
public QB<T> gt(String property, Object value) {
return (QB<T>) super.gt(property, value);
}

public QB<T> gte(String key, Object value) {
return (QB<T>) super.gte(key, value);
public QB<T> gte(String property, Object value) {
return (QB<T>) super.gte(property, value);
}

public QB<T> lt(String key, Object value) {
return (QB<T>) super.lt(key, value);
public QB<T> lt(String property, Object value) {
return (QB<T>) super.lt(property, value);
}

public QB<T> lte(String key, Object value) {
return (QB<T>) super.lte(key, value);
public QB<T> lte(String property, Object value) {
return (QB<T>) super.lte(property, value);
}

public QB<T> ne(String property, Object value) {
Expand Down Expand Up @@ -504,24 +504,24 @@ public X reduce(ReduceType type, String property, Bb havingBb) {
}


public X eq(String key, Object value) {
return (X) super.eq(key, value);
public X eq(String property, Object value) {
return (X) super.eq(property, value);
}

public X gt(String key, Object value) {
return (X) super.gt(key, value);
public X gt(String property, Object value) {
return (X) super.gt(property, value);
}

public X gte(String key, Object value) {
return (X) super.gte(key, value);
public X gte(String property, Object value) {
return (X) super.gte(property, value);
}

public X lt(String key, Object value) {
return (X) super.lt(key, value);
public X lt(String property, Object value) {
return (X) super.lt(property, value);
}

public X lte(String key, Object value) {
return (X) super.lte(key, value);
public X lte(String property, Object value) {
return (X) super.lte(property, value);
}

public X ne(String property, Object value) {
Expand Down
2 changes: 1 addition & 1 deletion sqli-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sqli-parent</artifactId>
<groupId>io.xream.sqli</groupId>
<version>2.1.9</version>
<version>2.1.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion sqli-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sqli-parent</artifactId>
<groupId>io.xream.sqli</groupId>
<version>2.1.9</version>
<version>2.1.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sqli-dialect</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sqli-repo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sqli-parent</artifactId>
<groupId>io.xream.sqli</groupId>
<version>2.1.9</version>
<version>2.1.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit d98cfbb

Please sign in to comment.