如果在查询时,有多个filter,怎么约束每个filter之间的关系呢。

分享  收藏
3 / 371

举个例子,如下 filters ,三个 filters 之间是什么逻辑关系? 怎么能做到 (( 第一个 filter or 第二个 filter) and 第三个 filter )
"filters": [

{

"controlId": "brandStr",

"dataType": 29,

"spliceType": 2,

"filterType": 11,

"values": ["xx","xx"]

},

{

"controlId": "constructionStr",

"dataType": 29,

"spliceType": 1,

"filterType": 11,

"values": ["x","x"]

},

{

"controlId": "orderStatus",

"dataType": 11,

"spliceType": 1,

"filterType": 2,

"value": "租赁中"

}

]