36 lines
1.5 KiB
Go
36 lines
1.5 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"
|
||
)
|
||
|
||
// SystemOperationLogs is the golang structure of table system_operation_logs for DAO operations like Where/Data.
|
||
type SystemOperationLogs struct {
|
||
g.Meta `orm:"table:system_operation_logs, do:true"`
|
||
Id interface{} // 日志ID
|
||
OperatorType interface{} // 操作者类型:1=系统管理员,2=商户管理员,3=门店管理员,4=普通用户
|
||
OperatorId interface{} // 操作者ID
|
||
MerchantId interface{} // 所属商户ID
|
||
StoreId interface{} // 所属门店ID
|
||
Module interface{} // 操作模块
|
||
Action interface{} // 操作类型
|
||
TargetType interface{} // 操作对象类型
|
||
TargetId interface{} // 操作对象ID
|
||
Content interface{} // 操作内容描述
|
||
RequestMethod interface{} // 请求方法
|
||
RequestUrl interface{} // 请求URL
|
||
RequestParams interface{} // 请求参数
|
||
ResponseCode interface{} // 响应状态码
|
||
ResponseMessage interface{} // 响应信息
|
||
IpAddress interface{} // 操作IP地址
|
||
UserAgent interface{} // 用户代理信息
|
||
CreatedAt *gtime.Time // 操作时间
|
||
UpdatedAt *gtime.Time // 更新时间
|
||
DeletedAt *gtime.Time // 软删除时间戳
|
||
}
|