// ================================================================================= // Code generated by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // WebOperateLog is the golang structure for table web_operate_log. type WebOperateLog struct { Id uint64 `json:"id" description:""` FuncName string `json:"funcName" description:"调用功能"` Ip string `json:"ip" description:"使用者ip"` Ct *gtime.Time `json:"ct" description:"记录创建时间"` Content string `json:"content" description:"内容"` ReqJson string `json:"reqJson" description:"请求内容"` CbData string `json:"cbData" description:"回调内容"` UserName string `json:"userName" description:"操作账号"` }