变更 interface{} => any

This commit is contained in:
2024-06-08 20:06:35 +08:00
parent 3faebb9145
commit 588df729e0
13 changed files with 59 additions and 59 deletions

View File

@ -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
}