21 lines
306 B
Go
21 lines
306 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
// DayKeys 每天对应key表
|
|
type DayKeys struct {
|
|
Date string
|
|
Key string
|
|
AesKey string
|
|
User string
|
|
gorm.Model
|
|
}
|
|
type JwtKeys struct {
|
|
Username string
|
|
Date string
|
|
Key string
|
|
Token string
|
|
Updated bool `gorm:"default:false"`
|
|
gorm.Model
|
|
}
|