init
This commit is contained in:
34
internal/model/do/system_operate_log.go
Normal file
34
internal/model/do/system_operate_log.go
Normal file
@@ -0,0 +1,34 @@
|
||||
// =================================================================================
|
||||
// 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{} // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user