- package model
-
- import "time"
-
- type SysTokenLog struct {
- TokenId int `xorm:"not null pk autoincr INT(11)"`
- Token string `xorm:"TEXT"`
- Uid string `xorm:"VARCHAR(64)"`
- Status int `xorm:"SMALLINT(6)"`
- CreateDate time.Time `xorm:"DATETIME"`
- ExpireDate time.Time `xorm:"DATETIME"`
- BatchNo string `xorm:"VARCHAR(64)"`
- }
|