// Copyright 2019 getensh.com. All rights reserved. // Use of this source code is governed by getensh.com. package utils import "math/rand" // 随机返回所有人验证结果 func GetRandOwnerVerify() string { num := rand.Intn(100) if num >= 95 { return "-1" } else { return "1" } }