35 lines
1.2 KiB
Go
35 lines
1.2 KiB
Go
package commod
|
|
|
|
type ProductType int
|
|
|
|
const (
|
|
VIP ProductType = 0 // product 0
|
|
VIDEO ProductType = 1 // VIDEO视频1
|
|
MODEL ProductType = 2 // MODEL嫩模2
|
|
MeetingCard ProductType = 3 // 约会卡 3
|
|
GAME ProductType = 4 // 游戏币 4
|
|
NEWUSERCard ProductType = 5 // 新手卡 5
|
|
PhysicalGoods ProductType = 6 // 实体商品 6
|
|
AudioBook ProductType = 8 // 语音小说 8
|
|
VideoDiscount ProductType = 13 // 视频折扣卡 13
|
|
VideoFreeCard ProductType = 14 // 视频免费卡 14
|
|
CoinMonthCard ProductType = 18 // 金币月卡 18
|
|
Media ProductType = 19 // 动漫整本 19
|
|
AdvanceCard ProductType = 21 // 预售卡 21
|
|
GameAdvanceCard ProductType = 22 // 游戏预售卡 22
|
|
WhoringCard ProductType = 24 // 白嫖卡 24
|
|
ImGroup ProductType = 101 // 加入群 101
|
|
NakedChat ProductType = 102 // 裸聊 102
|
|
)
|
|
const OTHER = 20 //OTHER 20
|
|
|
|
// CurrencyType 货币类型
|
|
type CurrencyType int
|
|
|
|
const (
|
|
Gold CurrencyType = iota + 1 // 金币
|
|
GameCoin // 游戏币
|
|
FruitCoin // 果币
|
|
AiMateCoin // AI伴侣币
|
|
)
|