19 lines
270 B
Plaintext
19 lines
270 B
Plaintext
package managecenterModel
|
|
|
|
// 服务器组热度
|
|
type GroupHeat int32
|
|
|
|
const (
|
|
// 正常
|
|
Con_GroupHeat_Normal GroupHeat = 1
|
|
|
|
// 新服
|
|
Con_GroupHeat_New GroupHeat = 2
|
|
|
|
// 推荐
|
|
Con_GroupHeat_Recommend GroupHeat = 3
|
|
|
|
// 热门
|
|
Con_GroupHeat_Heat GroupHeat = 4
|
|
)
|