Files
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

45 lines
1.0 KiB
Go

package commod
const (
LouFengCostNotify = "LouFengCostNotify:%d" //用户楼凤消费通知
GameRechargePoliteNotify = "GameRechargePoliteNotify:%d" //用户游戏充值有礼通知
)
// SystemConfigType 系统配置类型
type SystemConfigType int
const (
NudeChatSpecialArea SystemConfigType = iota // 裸聊专区
)
// SystemLocationCode 系统位置编号
type SystemLocationCode int
const (
OfficialBulletin SystemLocationCode = iota // 官方公告
)
// BuyType 充值购买类型
type BuyType int
const (
BuyGold BuyType = iota + 1 // 购买金币
BuyGameCoin // 购买游戏币
BuyFruitCoin // 购买果币
BuyProduct // 购买商品
//BuyNudeChatService // 购买裸聊服务
)
type AdGroup string
const (
AdGroupNone AdGroup = "" // 无组
AdGroupA AdGroup = "A" // A组
AdGroupB AdGroup = "B" // B组
AdGroupC AdGroup = "C" // C组
)
func (ag AdGroup) InABC() bool {
return ag == AdGroupA || ag == AdGroupB || ag == AdGroupC
}