package utils import ( "math/rand" "time" ) type RandDateParams struct { Year int Month int Day int } const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" const ( letterBits = 6 // 52个字母需6位(2^6=64) letterMask = 1<