mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-18 09:16:40 +08:00
25 lines
1.3 KiB
Go
25 lines
1.3 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SysServeLog is the golang structure for table sys_serve_log.
|
|
type SysServeLog struct {
|
|
Id int64 `json:"id" orm:"id" description:"日志ID"`
|
|
TraceId string `json:"traceId" orm:"trace_id" description:"链路ID"`
|
|
LevelFormat string `json:"levelFormat" orm:"level_format" description:"日志级别"`
|
|
Content string `json:"content" orm:"content" description:"日志内容"`
|
|
Stack *gjson.Json `json:"stack" orm:"stack" description:"打印堆栈"`
|
|
Line string `json:"line" orm:"line" description:"调用行"`
|
|
TriggerNs int64 `json:"triggerNs" orm:"trigger_ns" description:"触发时间(ns)"`
|
|
Status int `json:"status" orm:"status" description:"状态"`
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"修改时间"`
|
|
}
|