Merge branch 'develop' of https://gitee.com/fusenpack/fusenapi into develop

This commit is contained in:
eson
2023-06-12 15:19:02 +08:00
30 changed files with 435 additions and 29 deletions

View File

@@ -1,12 +0,0 @@
package sql_placeholder
import "strings"
// 获取对应长度占位符号
func GetSqlPlaceholder(l uint) string {
s := make([]string, 0, int(l))
for i := 0; i < int(l); i++ {
s = append(s, "?")
}
return strings.Join(s, ",")
}