Files
epic-go/internal/model/do/system_operate_log.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

35 lines
1.3 KiB
Go

// =================================================================================
// 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"
)
// SystemOperateLog is the golang structure of table system_operate_log for DAO operations like Where/Data.
type SystemOperateLog struct {
g.Meta `orm:"table:system_operate_log, do:true"`
Id interface{} // 日志主键
TraceId interface{} // 链路追踪编号
UserId interface{} // 用户编号
UserType interface{} // 用户类型
Type interface{} // 操作模块类型
SubType interface{} // 操作名
BizId interface{} // 操作数据模块编号
Action interface{} // 操作内容
Extra interface{} // 拓展字段
RequestMethod interface{} // 请求方法名
RequestUrl interface{} // 请求地址
UserIp interface{} // 用户 IP
UserAgent interface{} // 浏览器 UA
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
TenantId interface{} // 租户编号
}