mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +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"` // 总记录数
|
|
}
|