You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
906 B

4 months ago
// =================================================================================
// 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:"操作账号"`
}