42 lines
4.8 KiB
Go
42 lines
4.8 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraApiErrorLog is the golang structure for table infra_api_error_log.
|
|
type InfraApiErrorLog struct {
|
|
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
|
|
TraceId string `json:"traceId" orm:"trace_id" description:"链路追踪编号"` // 链路追踪编号
|
|
UserId int `json:"userId" orm:"user_id" description:"用户编号"` // 用户编号
|
|
UserType int `json:"userType" orm:"user_type" description:"用户类型"` // 用户类型
|
|
ApplicationName string `json:"applicationName" orm:"application_name" description:"应用名"` // 应用名
|
|
RequestMethod string `json:"requestMethod" orm:"request_method" description:"请求方法名"` // 请求方法名
|
|
RequestUrl string `json:"requestUrl" orm:"request_url" description:"请求地址"` // 请求地址
|
|
RequestParams string `json:"requestParams" orm:"request_params" description:"请求参数"` // 请求参数
|
|
UserIp string `json:"userIp" orm:"user_ip" description:"用户 IP"` // 用户 IP
|
|
UserAgent string `json:"userAgent" orm:"user_agent" description:"浏览器 UA"` // 浏览器 UA
|
|
ExceptionTime *gtime.Time `json:"exceptionTime" orm:"exception_time" description:"异常发生时间"` // 异常发生时间
|
|
ExceptionName string `json:"exceptionName" orm:"exception_name" description:"异常名"` // 异常名
|
|
ExceptionMessage string `json:"exceptionMessage" orm:"exception_message" description:"异常导致的消息"` // 异常导致的消息
|
|
ExceptionRootCauseMessage string `json:"exceptionRootCauseMessage" orm:"exception_root_cause_message" description:"异常导致的根消息"` // 异常导致的根消息
|
|
ExceptionStackTrace string `json:"exceptionStackTrace" orm:"exception_stack_trace" description:"异常的栈轨迹"` // 异常的栈轨迹
|
|
ExceptionClassName string `json:"exceptionClassName" orm:"exception_class_name" description:"异常发生的类全名"` // 异常发生的类全名
|
|
ExceptionFileName string `json:"exceptionFileName" orm:"exception_file_name" description:"异常发生的类文件"` // 异常发生的类文件
|
|
ExceptionMethodName string `json:"exceptionMethodName" orm:"exception_method_name" description:"异常发生的方法名"` // 异常发生的方法名
|
|
ExceptionLineNumber int `json:"exceptionLineNumber" orm:"exception_line_number" description:"异常发生的方法所在行"` // 异常发生的方法所在行
|
|
ProcessStatus int `json:"processStatus" orm:"process_status" description:"处理状态"` // 处理状态
|
|
ProcessTime *gtime.Time `json:"processTime" orm:"process_time" description:"处理时间"` // 处理时间
|
|
ProcessUserId int `json:"processUserId" orm:"process_user_id" description:"处理用户编号"` // 处理用户编号
|
|
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
|
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
|
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
|
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号
|
|
}
|