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

8 lines
287 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package request
type WafSqlQueryReq struct {
DbType string `json:"db_type" form:"db_type"` // 数据库类型local, log, stats
Sql string `json:"sql" form:"sql"` // SQL 查询语句
Limit int `json:"limit" form:"limit"` // 返回记录数限制,默认 1000
}