修复参数构建 + 验证相关一系列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

@ -17,8 +17,9 @@ import (
//
// Date : 12:34 2024/5/31
type Response struct {
Header map[string]string `json:"header"` // 响应header
Cookie map[string]string `json:"cookie"` // 响应cookie
Query map[string]any `json:"query"` // 请求query, 模拟自循环的请求
Header map[string]any `json:"header"` // 响应header
Cookie map[string]any `json:"cookie"` // 响应cookie
Data string `json:"data"` // 响应body
Code string `json:"code"` // 业务状态码
Message string `json:"message"` // 业务状态码描述