public class QueryCondition extends AbstractModel
skipSign
Constructor and Description |
---|
QueryCondition() |
QueryCondition(QueryCondition source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Get 筛选条件的key。
|
String |
getOperator()
Get 查询条件操作符,操作类型有:
equals: 等于;
notEquals: 不等于;
include: 包含;
notInclude: 不包含;
startWith: 开始的值是value;
notStartWith: 不以value的值开始;
endWith: 结尾是value值;
notEndWith: 不以value的值结尾。
|
String[] |
getValue()
Get 筛选条件的值。
|
void |
setKey(String Key)
Set 筛选条件的key。
|
void |
setOperator(String Operator)
Set 查询条件操作符,操作类型有:
equals: 等于;
notEquals: 不等于;
include: 包含;
notInclude: 不包含;
startWith: 开始的值是value;
notStartWith: 不以value的值开始;
endWith: 结尾是value值;
notEndWith: 不以value的值结尾。
|
void |
setValue(String[] Value)
Set 筛选条件的值。
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, getSkipSign, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public QueryCondition()
public QueryCondition(QueryCondition source)
public String getKey()
public void setKey(String Key)
Key
- 筛选条件的key。public String getOperator()
public void setOperator(String Operator)
Operator
- 查询条件操作符,操作类型有:
public String[] getValue()
public void setValue(String[] Value)
Value
- 筛选条件的值。Copyright © 2023. All rights reserved.