mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 04:03:44 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -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 // 修改时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user