结果集自动生成

This commit is contained in:
marvzhang
2020-04-19 17:49:21 +08:00
parent bad2af5711
commit b0a930ca32
8 changed files with 55 additions and 40 deletions

8
backend/utils/spider.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
func GetSpiderCol(col string, name string) string {
if col == "" {
return "results_" + name
}
return col
}