c1_lua/lua/app/module/monthly_card/monthly_card_const.lua
2025-10-08 18:17:02 +08:00

13 lines
273 B
Lua

local MonthlyCardConst = {}
MonthlyCardConst.CARD_TYPE = {
CARD_1 = 1, -- 超值
CARD_2 = 2, -- 特权
}
MonthlyCardConst.CARD_GIFT_ID = {
[MonthlyCardConst.CARD_TYPE.CARD_1] = 20102,
[MonthlyCardConst.CARD_TYPE.CARD_2] = 20202,
}
return MonthlyCardConst