mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
10 lines
218 B
Go
10 lines
218 B
Go
package model
|
||
|
||
// ApiKey OpenAI API 模型
|
||
type ApiKey struct {
|
||
BaseModel
|
||
UserId uint //用户ID,系统添加的用户 ID 为 0
|
||
Value string // API Key 的值
|
||
LastUsedAt int64 // 最后使用时间
|
||
}
|