This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -13,27 +13,27 @@ import (
// SysLog is the golang structure of table hg_sys_log for DAO operations like Where/Data.
type SysLog struct {
g.Meta `orm:"table:hg_sys_log, do:true"`
Id interface{} // 日志ID
ReqId interface{} // 对外ID
AppId interface{} // 应用ID
MerchantId interface{} // 商户ID
MemberId interface{} // 用户ID
Method interface{} // 提交类型
Module interface{} // 访问模块
Url interface{} // 提交url
Id any // 日志ID
ReqId any // 对外ID
AppId any // 应用ID
MerchantId any // 商户ID
MemberId any // 用户ID
Method any // 提交类型
Module any // 访问模块
Url any // 提交url
GetData *gjson.Json // get数据
PostData *gjson.Json // post数据
HeaderData *gjson.Json // header数据
Ip interface{} // IP地址
ProvinceId interface{} // 省编码
CityId interface{} // 市编码
ErrorCode interface{} // 报错code
ErrorMsg interface{} // 对外错误提示
Ip any // IP地址
ProvinceId any // 省编码
CityId any // 市编码
ErrorCode any // 报错code
ErrorMsg any // 对外错误提示
ErrorData *gjson.Json // 报错日志
UserAgent interface{} // UA信息
TakeUpTime interface{} // 请求耗时
Timestamp interface{} // 响应时间
Status interface{} // 状态
UserAgent any // UA信息
TakeUpTime any // 请求耗时
Timestamp any // 响应时间
Status any // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}