Files
SamWaf/model/response/waf_sql_query_resp.go
2025-11-12 16:32:00 +08:00

8 lines
254 B
Go

package response
type WafSqlQueryResp struct {
Columns []string `json:"columns"` // 列名列表
Data []map[string]interface{} `json:"data"` // 数据行列表
Total int `json:"total"` // 总记录数
}