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