You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
goverify/get.go

16 lines
283 B

package goverify
// 功能类型
var typeName = map[string]string{
Mobile: "移动",
Unicom: "联通",
Telecom: "电信",
Broadnet: "广电",
Virtual: "虚拟",
}
// GetTypeName 获取运营商类型名称
func GetTypeName(Type string) string {
return typeName[Type]
}