package rand
import (
"math/rand"
"time"
)
func init() {
rand.Seed(time.Now().UnixNano()) // 纳秒时间戳
}