This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemLoginLog is the golang structure for table system_login_log.
type SystemLoginLog struct {
Id int64 `json:"id" orm:"id" description:"访问ID"` // 访问ID
LogType int64 `json:"logType" orm:"log_type" description:"日志类型"` // 日志类型
TraceId string `json:"traceId" orm:"trace_id" description:"链路追踪编号"` // 链路追踪编号
UserId int64 `json:"userId" orm:"user_id" description:"用户编号"` // 用户编号
UserType int `json:"userType" orm:"user_type" description:"用户类型"` // 用户类型
Username string `json:"username" orm:"username" description:"用户账号"` // 用户账号
Result int `json:"result" orm:"result" description:"登陆结果"` // 登陆结果
UserIp string `json:"userIp" orm:"user_ip" description:"用户 IP"` // 用户 IP
UserAgent string `json:"userAgent" orm:"user_agent" description:"浏览器 UA"` // 浏览器 UA
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号
}