2025-10-16 13:28:24 +08:00

10 lines
359 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 trace
type Mongo struct {
Time string `json:"time"` // 时间格式2006-01-02 15:04:05
Database string `json:"database"` // 数据库名称
Command string `json:"command"` // 命令
Reply string `json:"reply"` // 响应
CostSeconds float64 `json:"cost_seconds"` // 执行时间(单位秒)
}