Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package model
import (
"fmt"
"strings"
)
const _matchMapInsertSQL = "INSERT INTO es_matchs_map(mid,aid) VALUES %s"
// MatchMap .
type MatchMap struct {
ID int64 `json:"id"`
Mid int64 `json:"mid"`
Aid int64 `json:"aid"`
IsDeleted int `json:"is_deleted"`
}
// TableName es_year_map.
func (m MatchMap) TableName() string {
return "es_matchs_map"
}
// BatchAddMachMapSQL .
func BatchAddMachMapSQL(data []*MatchMap) string {
if len(data) == 0 {
return ""
}
var rowStrings []string
for _, v := range data {
rowStrings = append(rowStrings, fmt.Sprintf("(%d,%d)", v.Mid, v.Aid))
}
return fmt.Sprintf(_matchMapInsertSQL, strings.Join(rowStrings, ","))
}