init
This commit is contained in:
43
internal/model/do/infra_api_error_log.go
Normal file
43
internal/model/do/infra_api_error_log.go
Normal file
@@ -0,0 +1,43 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// InfraApiErrorLog is the golang structure of table infra_api_error_log for DAO operations like Where/Data.
|
||||
type InfraApiErrorLog struct {
|
||||
g.Meta `orm:"table:infra_api_error_log, do:true"`
|
||||
Id interface{} // 编号
|
||||
TraceId interface{} // 链路追踪编号
|
||||
UserId interface{} // 用户编号
|
||||
UserType interface{} // 用户类型
|
||||
ApplicationName interface{} // 应用名
|
||||
RequestMethod interface{} // 请求方法名
|
||||
RequestUrl interface{} // 请求地址
|
||||
RequestParams interface{} // 请求参数
|
||||
UserIp interface{} // 用户 IP
|
||||
UserAgent interface{} // 浏览器 UA
|
||||
ExceptionTime *gtime.Time // 异常发生时间
|
||||
ExceptionName interface{} // 异常名
|
||||
ExceptionMessage interface{} // 异常导致的消息
|
||||
ExceptionRootCauseMessage interface{} // 异常导致的根消息
|
||||
ExceptionStackTrace interface{} // 异常的栈轨迹
|
||||
ExceptionClassName interface{} // 异常发生的类全名
|
||||
ExceptionFileName interface{} // 异常发生的类文件
|
||||
ExceptionMethodName interface{} // 异常发生的方法名
|
||||
ExceptionLineNumber interface{} // 异常发生的方法所在行
|
||||
ProcessStatus interface{} // 处理状态
|
||||
ProcessTime *gtime.Time // 处理时间
|
||||
ProcessUserId interface{} // 处理用户编号
|
||||
Creator interface{} // 创建者
|
||||
CreateTime *gtime.Time // 创建时间
|
||||
Updater interface{} // 更新者
|
||||
UpdateTime *gtime.Time // 更新时间
|
||||
Deleted interface{} // 是否删除
|
||||
TenantId interface{} // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user