goProject/trunk/framework/managecenterModel/serverGroupState.go

13 lines
180 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
package managecenterModel
// 服务器状态
type GroupState int32
const (
// 正常
Con_GroupState_Normal GroupState = 1
// 维护
Con_GroupState_Maintain GroupState = 2
)