Merge branch 'master' of git.zhangdeman.cn:zhangdeman/wrapper

This commit is contained in:
2024-06-12 16:38:58 +08:00
12 changed files with 65 additions and 63 deletions

View File

@ -255,7 +255,7 @@ type Float64PtrResult struct {
//
// Date : 16:40 2023/5/8
type Any struct {
Value interface{}
Value any
Err error
}
@ -285,7 +285,7 @@ type BoolPtrResult struct {
//
// Date : 16:38 2023/5/8
type ObjectResult struct {
Value map[string]interface{}
Value map[string]any
Err error
}
@ -475,6 +475,6 @@ type MapResult struct {
//
// Date : 18:28 2023/5/8
type AnySliceResult struct {
Value []interface{}
Value []any
Err error
}