Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- package model
-
- import (
- "time"
- )
-
- type UserLog struct {
- Id int64 `json:"id" xorm:"pk BIGINT(20)"`
- Uid int `json:"uid" xorm:"not null default 0 comment('用户ID') INT(11)"`
- Ip string `json:"ip" xorm:"not null default '' comment('ip') VARCHAR(15)"`
- Platform string `json:"platform" xorm:"not null default '' comment('平台') VARCHAR(32)"`
- Device string `json:"device" xorm:"not null default '' comment('设备') VARCHAR(64)"`
- CreateAt time.Time `json:"create_at" xorm:"not null default CURRENT_TIMESTAMP comment('创建时间') TIMESTAMP"`
- }
|