mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-12-26 01:56:00 +08:00
发布代码生成、更新20+表单组件,优化数据字典,gf版本更新到2.3.1
This commit is contained in:
@@ -5,28 +5,29 @@
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/encoding/gjson"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysLog is the golang structure for table sys_log.
|
||||
type SysLog struct {
|
||||
Id int64 `json:"id" description:""`
|
||||
AppId string `json:"appId" description:"应用id"`
|
||||
MerchantId uint64 `json:"merchantId" description:"商户id"`
|
||||
MemberId int64 `json:"memberId" description:"用户id"`
|
||||
Id int64 `json:"id" description:"日志ID"`
|
||||
AppId string `json:"appId" description:"应用ID"`
|
||||
MerchantId uint64 `json:"merchantId" description:"商户ID"`
|
||||
MemberId int64 `json:"memberId" description:"用户ID"`
|
||||
Method string `json:"method" description:"提交类型"`
|
||||
Module string `json:"module" description:"模块"`
|
||||
Module string `json:"module" description:"访问模块"`
|
||||
Url string `json:"url" description:"提交url"`
|
||||
GetData string `json:"getData" description:"get数据"`
|
||||
PostData string `json:"postData" description:"post数据"`
|
||||
HeaderData string `json:"headerData" description:"header数据"`
|
||||
Ip string `json:"ip" description:"ip地址"`
|
||||
GetData *gjson.Json `json:"getData" description:"get数据"`
|
||||
PostData *gjson.Json `json:"postData" description:"post数据"`
|
||||
HeaderData *gjson.Json `json:"headerData" description:"header数据"`
|
||||
Ip string `json:"ip" description:"IP地址"`
|
||||
ProvinceId int64 `json:"provinceId" description:"省编码"`
|
||||
CityId int64 `json:"cityId" description:"市编码"`
|
||||
ErrorCode int `json:"errorCode" description:"报错code"`
|
||||
ErrorMsg string `json:"errorMsg" description:"报错信息"`
|
||||
ErrorData string `json:"errorData" description:"报错日志"`
|
||||
ReqId string `json:"reqId" description:"对外id"`
|
||||
ErrorData *gjson.Json `json:"errorData" description:"报错日志"`
|
||||
ReqId string `json:"reqId" description:"对外ID"`
|
||||
Timestamp int64 `json:"timestamp" description:"响应时间"`
|
||||
UserAgent string `json:"userAgent" description:"UA信息"`
|
||||
TakeUpTime int64 `json:"takeUpTime" description:"请求耗时"`
|
||||
|
||||
Reference in New Issue
Block a user