Some checks failed
Build / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
build / Build (push) Has been cancelled
GitHub Actions Mirror / mirror_to_gitee (push) Has been cancelled
GitHub Actions Mirror / mirror_to_gitlab (push) Has been cancelled
Issue Close Require / issue-close-require (push) Has been cancelled
20 lines
667 B
Go
20 lines
667 B
Go
package rediskey
|
|
|
|
const (
|
|
//用户翻译详情 {key}
|
|
TM_MEMBER_BY_KEY = "tm_member_by_key:%s"
|
|
//用户每日翻译字符数 {date(yyyyMMdd),key,plateformCode}
|
|
TM_MEMBER_DAILY_COUNT = "tm_member_daily_count:%s:%s:%s"
|
|
//用户每日翻译字符数 {date(yyyyMMdd)} 只有前缀
|
|
TM_MEMBER_DAILY_COUNT_PURE = "tm_member_daily_count"
|
|
//用户剩余翻译字符数 {key,plateformCode}
|
|
TM_MEMBER_REMAIN_COUNT = "tm_member_remain_count:%s:%s"
|
|
//用户剩余翻译字符数 {key} 只有前缀
|
|
TM_MEMBER_REMAIN_COUNT_PURE = "tm_member_remain_count"
|
|
)
|
|
|
|
const (
|
|
//用户充值预订单 {amount}
|
|
TM_RECHARGE_PRE_ORDER = "tm_recharge_pre_order:%s"
|
|
)
|