mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
optimize QueryColumn.java
This commit is contained in:
parent
2a9b29da25
commit
53e4980d7c
@ -172,10 +172,9 @@ public class QueryColumn implements Serializable {
|
||||
/**
|
||||
* IS NULL
|
||||
*
|
||||
* @param name
|
||||
* @return
|
||||
*/
|
||||
public QueryCondition isNull(String name) {
|
||||
public QueryCondition isNull() {
|
||||
return QueryCondition.create(this, QueryCondition.LOGIC_IS_NULL, null);
|
||||
}
|
||||
|
||||
@ -183,10 +182,9 @@ public class QueryColumn implements Serializable {
|
||||
/**
|
||||
* IS NOT NULL
|
||||
*
|
||||
* @param name
|
||||
* @return
|
||||
*/
|
||||
public QueryCondition isNotNull(String name) {
|
||||
public QueryCondition isNotNull() {
|
||||
return QueryCondition.create(this, QueryCondition.LOGIC_IS_NOT_NULL, null);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user