变更 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

@ -13,7 +13,7 @@ package try
//
// Date : 11:30 2023/7/20
type LogicFuncInput struct {
Parameter map[string]interface{}
Parameter map[string]any
}
// LogicFuncOutput ...
@ -22,8 +22,8 @@ type LogicFuncInput struct {
//
// Date : 11:30 2023/7/20
type LogicFuncOutput struct {
ErrCode string // 错误标识码
Data map[string]interface{} // 错误时返回的数据
ErrCode string // 错误标识码
Data map[string]any // 错误时返回的数据
}
// NewLogicFuncOutput 获取逻辑函数输出数据
@ -31,9 +31,9 @@ type LogicFuncOutput struct {
// Author : go_developer@163.com<白茶清欢>
//
// Date : 11:33 2023/7/20
func NewLogicFuncOutput(code string, data map[string]interface{}) LogicFuncOutput {
func NewLogicFuncOutput(code string, data map[string]any) LogicFuncOutput {
if data == nil {
data = map[string]interface{}{}
data = map[string]any{}
}
r := LogicFuncOutput{
ErrCode: code,