// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // UserLog is the golang structure for table nl_user_log. type UserLog struct { Id uint `json:"id" orm:"id" description:"日志ID"` UserId int `json:"user_id" orm:"user_id" description:"用户ID"` Action string `json:"action" orm:"action" description:"操作动作"` Module string `json:"module" orm:"module" description:"操作模块"` Content string `json:"content" orm:"content" description:"操作内容"` Ip string `json:"ip" orm:"ip" description:"IP地址"` UserAgent string `json:"user_agent" orm:"user_agent" description:"用户代理"` CreatedAt *gtime.Time `json:"created_at" orm:"created_at" description:"创建时间"` }