mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2026-09-19 09:32:29 +08:00
8 lines
254 B
Go
8 lines
254 B
Go
package response
|
|
|
|
type WafSqlQueryResp struct {
|
|
Columns []string `json:"columns"` // 列名列表
|
|
Data []map[string]interface{} `json:"data"` // 数据行列表
|
|
Total int `json:"total"` // 总记录数
|
|
}
|