20 lines
472 B
Go
20 lines
472 B
Go
![]() |
package info
|
||
|
|
||
|
import (
|
||
|
"gopkg.in/mgo.v2/bson"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// http://docs.mongodb.org/manual/tutorial/expire-data/
|
||
|
type Session struct {
|
||
|
Id bson.ObjectId `bson:"_id,omitempty"` // 没有意义
|
||
|
|
||
|
SessionId string `bson:"SessionId"` // SessionId
|
||
|
|
||
|
LoginTimes int `LoginTimes` // 登录错误时间
|
||
|
Captcha string `Captcha` // 验证码
|
||
|
|
||
|
CreatedTime time.Time `CreatedTime`
|
||
|
UpdatedTime time.Time `UpdatedTime` // 更新时间, expire这个时间会自动清空
|
||
|
}
|