enum.go 1.38 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2
package res_e

hujiebin's avatar
hujiebin committed
3
import "git.hilo.cn/hilo-common/resource/mysql"
chenweijian's avatar
chenweijian committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

type MsgIdType = uint

const (
	DEFAULT_LANG = "en"
)

type ResMedalType = mysql.Type

const (
	Wealth        ResMedalType = 1
	Charm         ResMedalType = 2
	LoveForAll    ResMedalType = 3
	StartForAll   ResMedalType = 4
	MoonForAll    ResMedalType = 5
	MarryMe       ResMedalType = 6
	RoomRocket    ResMedalType = 7
	Actity        ResMedalType = 8
	FruitKing     ResMedalType = 9
	BoxKing       ResMedalType = 10
	Helicopter    ResMedalType = 11
	Roadster      ResMedalType = 12
	Watermelon    ResMedalType = 13
	Kiss          ResMedalType = 14
	Love          ResMedalType = 15
	Chick         ResMedalType = 16
	SportsCar     ResMedalType = 17
	Rocket        ResMedalType = 18
	Tower         ResMedalType = 19
	Eagle         ResMedalType = 20
	Lion          ResMedalType = 21
	Vacation      ResMedalType = 22
	RomanticNight ResMedalType = 23
	SweetCouple   ResMedalType = 24
	Castle        ResMedalType = 25
	WeddingCar    ResMedalType = 26
	VideoChat     ResMedalType = 27
)

type ResMedalScope = mysql.Type

const (
	//私有,只能时管理人发放
	Private ResMedalScope = 1
	//公有,自己获取
	Public ResMedalScope = 2
)

type ResNameplateType = mysql.Type
type ResNameplateObtainType = mysql.Type
type ResNameplateScope = mysql.Type
hujiebin's avatar
hujiebin committed
55 56 57 58 59 60

type ResUserBag = mysql.Type

const (
	ResUserBagGift ResUserBag = 1 // 背包道具-礼物
)