2 Star 3 Fork 2

cristiane / micro-mall-search

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
table.go 339 Bytes
一键复制 编辑 原始数据 按行查看 历史
cristiane 提交于 2020-11-25 11:07 . 商品搜索,店铺搜索
package util
import (
"fmt"
"strconv"
)
// 分表
func SeparateTable(id string, count int) string {
if id == "" || count <= 0 {
return ""
}
idInt := 0
for _, value := range []byte(id) {
idInt += int(value)
}
length := len(strconv.Itoa(count))
return fmt.Sprintf("%0"+strconv.Itoa(length)+"s", strconv.Itoa(idInt%count))
}
Go
1
https://gitee.com/cristiane/micro-mall-search.git
git@gitee.com:cristiane/micro-mall-search.git
cristiane
micro-mall-search
micro-mall-search
v1.0.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891