This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
// =================================================================================
// 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"
)
// InfraApiAccessLog is the golang structure of table infra_api_access_log for DAO operations like Where/Data.
type InfraApiAccessLog struct {
g.Meta `orm:"table:infra_api_access_log, do:true"`
Id interface{} // 日志主键
TraceId interface{} // 链路追踪编号
UserId interface{} // 用户编号
UserType interface{} // 用户类型
ApplicationName interface{} // 应用名
RequestMethod interface{} // 请求方法名
RequestUrl interface{} // 请求地址
RequestParams interface{} // 请求参数
ResponseBody interface{} // 响应结果
UserIp interface{} // 用户 IP
UserAgent interface{} // 浏览器 UA
OperateModule interface{} // 操作模块
OperateName interface{} // 操作名
OperateType interface{} // 操作分类
BeginTime *gtime.Time // 开始请求时间
EndTime *gtime.Time // 结束请求时间
Duration interface{} // 执行时长
ResultCode interface{} // 结果码
ResultMsg interface{} // 结果提示
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
TenantId interface{} // 租户编号
}