生成表结构、

This commit is contained in:
2025-05-29 16:23:14 +08:00
parent e8a8e36d61
commit ea87bc829e
97 changed files with 3795 additions and 0 deletions

View File

@ -0,0 +1,35 @@
// =================================================================================
// 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 // 软删除时间戳
}