1 Star 0 Fork 0

linxing/youye-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
id.go 537 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mark 提交于 2023-12-23 11:58 . init
package id
import (
"fmt"
"strconv"
"time"
)
var sf *Sonyflake
func init() {
var st Settings
st.StartTime = time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC)
///st.MachineID = EC2MachineID()
sf = NewSonyflake(st)
if sf == nil {
panic("sonyflake not created")
}
}
func GetNextID() string {
id, err := sf.NextID()
if err != nil {
fmt.Println("id not generated")
}
return strconv.FormatUint(id, 10)
}
func GetNextIDNumber() uint64 {
id, err := sf.NextID()
if err != nil {
fmt.Println("id not generated")
}
return id
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linxing_3/youye-core.git
git@gitee.com:linxing_3/youye-core.git
linxing_3
youye-core
youye-core
v0.0.1-202406061654

搜索帮助