13 lines
180 B
Go
13 lines
180 B
Go
package managecenterModel
|
|
|
|
// 服务器状态
|
|
type GroupState int32
|
|
|
|
const (
|
|
// 正常
|
|
Con_GroupState_Normal GroupState = 1
|
|
|
|
// 维护
|
|
Con_GroupState_Maintain GroupState = 2
|
|
)
|