Fix AttributeHistory dataclass to match schema

This commit is contained in:
OpenClaw Bot
2026-02-20 00:21:52 +08:00
parent d1ab36a543
commit 98d39228c3

View File

@@ -86,13 +86,13 @@ class AttributeHistory:
"""属性变更历史"""
id: str
entity_id: str
template_id: str
template_name: str = ""
attribute_name: str = "" # 属性名称
old_value: str = ""
new_value: str = ""
changed_by: str = ""
changed_at: str = ""
change_reason: str = ""
change_reason: str = ""
@dataclass
class EntityMention: