2022-11-16 10:20:07 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Auths struct {
|
2023-09-04 06:02:25 +00:00
|
|
|
Id int `xorm:"pk autoincr int"`
|
2022-11-16 10:20:07 +00:00
|
|
|
Ip string `xorm:"VARCHAR(255)"`
|
|
|
|
Type string `xorm:"VARCHAR(255)"`
|
|
|
|
Info string `xorm:"JSON"`
|
|
|
|
Createdat time.Time `xorm:"not null DATETIME created"`
|
|
|
|
Updatedat time.Time `xorm:"not null DATETIME updated"`
|
|
|
|
}
|