增加struct的包装类型

This commit is contained in:
2023-08-10 16:58:13 +08:00
parent 5c6053d86c
commit 824c098481
3 changed files with 113 additions and 0 deletions

View File

@ -496,3 +496,13 @@ type AnySliceResult struct {
Value []interface{}
Err error
}
// MapResult 转map的结果
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 16:05 2023/8/10
type MapResult struct {
Value Map
Err error
}