This commit is contained in:
Marsway 2026-02-03 17:01:14 +08:00
parent 0d8304da2c
commit 0ec290c193
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ class HuobanyunService:
payload: Dict[str, Any] = {"table_id": table_id, "limit": limit, "offset": offset}
if key and query_value:
payload["filter"] = {"and": [{"field": key, "query": {"eqm": [query_value]}}]}
payload["filter"] = {"and": [{"field": key, "query": {"eqm": [str(query_value)]}}]}
elif raw.get("filter"):
payload["filter"] = raw.get("filter")
elif query_value: