1 Star 1 Fork 0

flash520/utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
randomString.go 611 Bytes
一键复制 编辑 原始数据 按行查看 历史
/**
* @Author: koulei
* @Description:
* @File: randomString
* @Version: 1.0.0
* @Date: 2021/12/26 19:13
*/
package gf
import "gitee.com/flash520/utils/randomstring"
var RandomStr = randomStr{}
type randomStr struct {
}
// New 获取随机数对象
// 1、混合型字符串,
// 2、数字型字符串
// 3、字母型字符串(包含大小写)
func (r *randomStr) New(n int) *randomstring.RandomString {
switch n {
case 1:
return randomstring.NewRandomString(n)
case 2:
return randomstring.NewRandomString(n)
case 3:
return randomstring.NewRandomString(n)
default:
return nil
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flash520/utils.git
git@gitee.com:flash520/utils.git
flash520
utils
utils
v1.6.5

搜索帮助