44 lines
2.4 KiB
Go
44 lines
2.4 KiB
Go
package key
|
|
|
|
const (
|
|
// Game
|
|
DdbGameAccountResetCount = "Game.AccountResetCount[%v][%v][%v]" // String
|
|
DdbGameAccount = "Game.Account[%v][%v][%v]" // String
|
|
DdbGameAccountHistory = "Game.AccountHistory[%v][%v][%v]" // Hash
|
|
DdbGamePlayerSN = "Game.PlayerSN" // String
|
|
DdbGamePlayer = "Game.Player[%v]" // Hash
|
|
DdbGameSettle = "Game.Settle[%v]" // List
|
|
DdbGamePool = "Game.Pool" // Hash
|
|
DdbGameClusterPool = "Game.Pool[%v]" // Hash
|
|
DdbGamePlayerLoginTime = "Game.PlayerLoginTime" // Hash
|
|
|
|
// Cheat
|
|
DdbCheatSlots = "Cheat.Slots[%v]" // Hash
|
|
|
|
// System
|
|
DdbSystemMailSN = "System.MailSN" // String
|
|
DdbSystemMail = "System.Mail[%v]" // Hash
|
|
DdbSystemPaymentOrder = "System.PaymentOrder" // Hash
|
|
DdbSystemPaymentOrderDaily = "System.PaymentOrderDaily[%v]" // Hash 2006-01-02
|
|
DdbSystemBroadcast = "System.Broadcast" // List
|
|
DdbSystemInviteReward = "System.InviteReward" // Hash
|
|
DdbSystemInviteRank = "System.InviteRank" // String
|
|
DdbSystemInviteCoin = "System.InviteCoin" // SortedSet
|
|
DdbSystemPix = "System.Pix" // Hash PIX账号使用次数记录
|
|
DdbSystemCPF = "System.CPF" // Hash CPF账号使用次数记录
|
|
DdbSystemPhoneNumber = "System.PhoneNumber" // Hash 手机号使用次数记录
|
|
DdbSystemStatisticsDaily = "System.Statistics[%v]" // Hash 2006-01-02
|
|
DdbSystemCustomerServiceDaily = "System.CustomerServiceDaily[%v]" // Hash 2006-01-02
|
|
DdbSystemCustomerServiceTotal = "System.CustomerServiceTotal" // Hash
|
|
|
|
// Opt
|
|
DdbOptOperate = "Opt.Operate" // Hash 记录一些标记
|
|
DdbOptConfig = "Opt.Config" // Hash
|
|
DdbOptClusterConfig = "Opt.Config[%v]" // Hash
|
|
DdbOptPlayer = "Opt.Player[%v]" // Hash
|
|
DdbOptDevice = "Opt.Device" // Hash 设备管理
|
|
DdbOptBanPlayer = "Opt.BanPlayer" // Hash 封禁管理
|
|
DdbOptPermitLogin = "Opt.PermitLogin" // Hash Login表通行许可
|
|
DdbOptPermitUserTag = "Opt.PermitUserTag" // Hash UserTag表通行许可
|
|
)
|