This commit is contained in:
xxj
2021-04-14 10:24:14 +08:00
parent 8dba9d315c
commit 3abe0a8b26
4 changed files with 20 additions and 7 deletions

View File

@@ -206,7 +206,7 @@ func GenFListIndex(info FList, status int) string {
{
var strs []string
for _, v := range info.Kem {
strs = append(strs, fmt.Sprintf("%v = ?", v.ColName)) //wxw 2021.2.26 16:53
strs = append(strs, fmt.Sprintf("`%v` = ?", v.ColName)) //wxw 2021.2.26 16:53
}
return strings.Join(strs, " AND ")
}