Files
kami_backend/internal/model/entity/user_login_log.go
2023-11-15 14:31:37 +08:00

20 lines
817 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// UserLoginLog is the golang structure for table user_login_log.
type UserLoginLog struct {
Id int `json:"id" description:""`
UserId string `json:"userId" description:""`
LoginTime *gtime.Time `json:"loginTime" description:"登录时间"`
LoginIp string `json:"loginIp" description:"登录IP"`
LoginLocation string `json:"loginLocation" description:"登录地点"`
CreatedAt string `json:"createdAt" description:""`
}