goProject/trunk/framework/managecenterModel/officialOrTest.go

12 lines
155 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
package managecenterModel
type OfficialOrTest int32
const (
// 正式服
Con_Official OfficialOrTest = 1
// 测试服
Con_Test OfficialOrTest = 2
)