Finish the feature of share and bridge.

This commit is contained in:
zicla
2019-04-29 21:14:29 +08:00
parent ca721c78e6
commit d75c4a222e
20 changed files with 605 additions and 330 deletions

View File

@ -51,7 +51,8 @@ func RandomNumber4() string {
//获取四位随机数字
func RandomString4() string {
var letterRunes = []rune("abcdefghijklmnopqrstuvwxyz0123456789")
//0和ol和1难以区分剔除掉
var letterRunes = []rune("abcdefghijkmnpqrstuvwxyz23456789")
b := make([]rune, 4)
for i := range b {