记录一下用mac地址+local时间作为seed来产生随机数 // 首先记录一下rand.Seed()怎么用 // 官方说明,传入int64数据为Seed func (r *Rand) Seed(seed int64) // Seed uses the provided seed value to initialize the generator to a deterministic state. // Seed使用提供的seed值将发生器初始化为确定性状态. 导致每次rand出来的都是一样的,