This commit is contained in:
jxxghp
2025-05-02 08:31:38 +08:00
parent 91d0f76783
commit 85b55aa924
3 changed files with 6 additions and 17 deletions
+2 -2
View File
@@ -315,13 +315,13 @@ class StorageOperSelectionEventData(ChainEventData):
Attributes:
# 输入参数
storage_name (str): 存储名称
storage (str): 存储类型
# 输出参数
storage_oper (Callable): 存储操作对象
"""
# 输入参数
storage_name: str = Field(..., description="存储名称")
storage: str = Field(..., description="存储类型")
# 输出参数
storage_oper: Optional[Callable] = Field(default=None, description="存储操作对象")