goProject/trunk/framework/managecenterModel/serverGroupState.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

13 lines
180 B
Go

package managecenterModel
// 服务器状态
type GroupState int32
const (
// 正常
Con_GroupState_Normal GroupState = 1
// 维护
Con_GroupState_Maintain GroupState = 2
)