mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 06:52:13 +08:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
|
|
package domain
|
|||
|
|
|
|||
|
|
// Status constants
|
|||
|
|
const (
|
|||
|
|
StatusActive = "active"
|
|||
|
|
StatusDisabled = "disabled"
|
|||
|
|
StatusError = "error"
|
|||
|
|
StatusUnused = "unused"
|
|||
|
|
StatusUsed = "used"
|
|||
|
|
StatusExpired = "expired"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Role constants
|
|||
|
|
const (
|
|||
|
|
RoleAdmin = "admin"
|
|||
|
|
RoleUser = "user"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Platform constants
|
|||
|
|
const (
|
|||
|
|
PlatformAnthropic = "anthropic"
|
|||
|
|
PlatformOpenAI = "openai"
|
|||
|
|
PlatformGemini = "gemini"
|
|||
|
|
PlatformAntigravity = "antigravity"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Account type constants
|
|||
|
|
const (
|
|||
|
|
AccountTypeOAuth = "oauth" // OAuth类型账号(full scope: profile + inference)
|
|||
|
|
AccountTypeSetupToken = "setup-token" // Setup Token类型账号(inference only scope)
|
|||
|
|
AccountTypeAPIKey = "apikey" // API Key类型账号
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Redeem type constants
|
|||
|
|
const (
|
|||
|
|
RedeemTypeBalance = "balance"
|
|||
|
|
RedeemTypeConcurrency = "concurrency"
|
|||
|
|
RedeemTypeSubscription = "subscription"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// PromoCode status constants
|
|||
|
|
const (
|
|||
|
|
PromoCodeStatusActive = "active"
|
|||
|
|
PromoCodeStatusDisabled = "disabled"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Admin adjustment type constants
|
|||
|
|
const (
|
|||
|
|
AdjustmentTypeAdminBalance = "admin_balance" // 管理员调整余额
|
|||
|
|
AdjustmentTypeAdminConcurrency = "admin_concurrency" // 管理员调整并发数
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Group subscription type constants
|
|||
|
|
const (
|
|||
|
|
SubscriptionTypeStandard = "standard" // 标准计费模式(按余额扣费)
|
|||
|
|
SubscriptionTypeSubscription = "subscription" // 订阅模式(按限额控制)
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Subscription status constants
|
|||
|
|
const (
|
|||
|
|
SubscriptionStatusActive = "active"
|
|||
|
|
SubscriptionStatusExpired = "expired"
|
|||
|
|
SubscriptionStatusSuspended = "suspended"
|
|||
|
|
)
|