初始化项目文件

This commit is contained in:
2025-07-11 16:54:11 +08:00
parent 6bffd582a0
commit 39fedaac16
213 changed files with 16944 additions and 0 deletions

20
api_file/model/keys.go Normal file
View File

@ -0,0 +1,20 @@
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
}