|
@@ -636,11 +636,12 @@ func StrTimeToTime(strTime string) time.Time {
|
|
|
|
|
|
|
|
|
func GetOrmInReplace(num int) string {
|
|
|
- template := make([]string, num)
|
|
|
- for i := 0; i < num; i++ {
|
|
|
- template[i] = "?"
|
|
|
- }
|
|
|
- return strings.Join(template, ",")
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ return "?"
|
|
|
}
|
|
|
|
|
|
|