IJsonRead支持Value, 泛读取数据

This commit is contained in:
2025-05-06 12:22:26 +08:00
parent 1124ff6a33
commit 042aad254b
3 changed files with 30 additions and 0 deletions

View File

@ -31,4 +31,6 @@ type IJsonRead interface {
Array(dataPath string) ([]any, error)
// ArrayWithReceiver 通过指针接收
ArrayWithReceiver(dataPath string, receiver any) error
// Value 自适应类型数据读取
Value(dataPath string, dataType string, defaultValue any) (any, error)
}