es 多条件查询
GET /es_index/_search
{
"query": {
"bool": {
"must": [
{
"term": {
"name": "zhangsan"
}
},
{
"term": {
"age": 4
}
},
{
"term": {
"sex": "man"
}
}
]
}
}
}