2022-02-25 17:11:17 +08:00
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
2022-11-24 23:37:34 +08:00
|
|
|
package do
|
2022-02-25 17:11:17 +08:00
|
|
|
|
|
|
|
import (
|
2023-01-18 16:23:39 +08:00
|
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
2022-02-25 17:11:17 +08:00
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SysLog is the golang structure of table hg_sys_log for DAO operations like Where/Data.
|
|
|
|
type SysLog struct {
|
2022-11-24 23:37:34 +08:00
|
|
|
g.Meta `orm:"table:hg_sys_log, do:true"`
|
2023-01-18 16:23:39 +08:00
|
|
|
Id interface{} // 日志ID
|
|
|
|
AppId interface{} // 应用ID
|
|
|
|
MerchantId interface{} // 商户ID
|
|
|
|
MemberId interface{} // 用户ID
|
2022-02-25 17:11:17 +08:00
|
|
|
Method interface{} // 提交类型
|
2023-01-18 16:23:39 +08:00
|
|
|
Module interface{} // 访问模块
|
2022-02-25 17:11:17 +08:00
|
|
|
Url interface{} // 提交url
|
2023-01-18 16:23:39 +08:00
|
|
|
GetData *gjson.Json // get数据
|
|
|
|
PostData *gjson.Json // post数据
|
|
|
|
HeaderData *gjson.Json // header数据
|
|
|
|
Ip interface{} // IP地址
|
2022-02-25 17:11:17 +08:00
|
|
|
ProvinceId interface{} // 省编码
|
|
|
|
CityId interface{} // 市编码
|
|
|
|
ErrorCode interface{} // 报错code
|
|
|
|
ErrorMsg interface{} // 报错信息
|
2023-01-18 16:23:39 +08:00
|
|
|
ErrorData *gjson.Json // 报错日志
|
|
|
|
ReqId interface{} // 对外ID
|
2022-02-25 17:11:17 +08:00
|
|
|
Timestamp interface{} // 响应时间
|
|
|
|
UserAgent interface{} // UA信息
|
|
|
|
TakeUpTime interface{} // 请求耗时
|
|
|
|
Status interface{} // 状态
|
|
|
|
CreatedAt *gtime.Time // 创建时间
|
|
|
|
UpdatedAt *gtime.Time // 修改时间
|
|
|
|
}
|