Files
go-gin-api/internal/pkg/trace/sql.go
T
2021-01-09 20:10:13 +08:00

10 lines
367 B
Go

package trace
type SQL struct {
Time string `json:"time"` // 时间,格式:2006-01-02 15:04:05
Src string `json:"src"` // 文件地址和行号
Duration float64 `json:"duration"` // 执行时长,单位:秒
SQL string `json:"sql"` // SQL 语句
Rows int64 `json:"rows_affected"` // 影响行数
}