mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
10 lines
278 B
Go
10 lines
278 B
Go
package vo
|
||
|
||
// ApiKey OpenAI API 模型
|
||
type ApiKey struct {
|
||
BaseVo
|
||
UserId uint `json:"user_id"` //用户ID,系统添加的用户 ID 为 0
|
||
Value string `json:"value"` // API Key 的值
|
||
LastUsedAt int64 `json:"last_used_at"` // 最后使用时间
|
||
}
|