变更 interface{} => any
This commit is contained in:
@ -268,7 +268,7 @@ type Float64PtrResult struct {
|
||||
//
|
||||
// Date : 16:40 2023/5/8
|
||||
type Any struct {
|
||||
Value interface{}
|
||||
Value any
|
||||
Err error
|
||||
}
|
||||
|
||||
@ -298,7 +298,7 @@ type BoolPtrResult struct {
|
||||
//
|
||||
// Date : 16:38 2023/5/8
|
||||
type ObjectResult struct {
|
||||
Value map[string]interface{}
|
||||
Value map[string]any
|
||||
Err error
|
||||
}
|
||||
|
||||
@ -488,6 +488,6 @@ type MapResult struct {
|
||||
//
|
||||
// Date : 18:28 2023/5/8
|
||||
type AnySliceResult struct {
|
||||
Value []interface{}
|
||||
Value []any
|
||||
Err error
|
||||
}
|
||||
|
Reference in New Issue
Block a user