20 lines
817 B
Go
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:""`
|
|
}
|
