2024-01-29 15:14:08 +08:00
|
|
|
package base
|
|
|
|
|
|
|
|
type ResApiCaptcha struct {
|
|
|
|
Uuid string `db:"uuid"`
|
|
|
|
Category int64 `db:"category"` // 验证码类型
|
|
|
|
ResApiUuid string `db:"resource_api_uuid"` // 接口UUID
|
|
|
|
Interval int64 `db:"interval"` // 间隔时间
|
|
|
|
Exp int64 `db:"exp"` // 超时时间
|
|
|
|
Extra map[string]any `db:"extra"` // 扩展配置
|
|
|
|
UpdatedAt string `db:"updated_at"`
|
|
|
|
CreatedAt string `db:"created_at"`
|
|
|
|
}
|
2024-01-29 15:42:22 +08:00
|
|
|
|
|
|
|
type GetResApiCaptcha func(uuid string) (ResApiCaptcha, bool)
|