Files
aggregate_translate_server/common/redis_key/tm_platform.go

15 lines
362 B
Go
Raw Normal View History

2025-06-29 00:36:30 +08:00
package rediskey
const (
//详情
TM_PLATFORM_KEY = "tm_platform:%s"
//列表
TM_PLATFORM_LIST_KEY = "tm_platform_list"
//平台账号列表 {platformCode}
TM_PLATFORM_ACCOUNT_LIST_KEY = "tm_platform_account_list:%s"
//平台账号剩余字符 {platformCode,apikey}
TM_PLATEFORM_ACCOUNT_REMAIN_KEY = "tm_platform_account_remain:%s:%s"
)