修复参数构建 + 验证相关一系列BUG

This commit is contained in:
2025-03-31 17:17:20 +08:00
parent f14401a39f
commit 5d790ff1e7
5 changed files with 56 additions and 29 deletions

View File

@ -22,7 +22,7 @@ import (
// Date : 14:14 2025/3/28
type RequestConfig struct {
Ctx context.Context `json:"-"` // 上下文
CommonParam map[string]any `json:"common_param"` // 公共参数
CommonParam map[string]map[string]any `json:"common_param"` // 公共参数
Group [][]*RequestConfigGroupItem `json:"group"` // 请求分组
ResultRule []*RequestConfigResultRule `json:"result_rule"` // 结果提取规则, 多个接口的结果构造成一个返回结果
}