增加menu自动化添加功能

This commit is contained in:
2021-06-11 08:06:44 +08:00
parent 1077f09755
commit 32167d4721
5 changed files with 135 additions and 27 deletions
+1 -1
View File
@@ -610,7 +610,7 @@ func (that *HoTimeDB) where(data Map) (string, []interface{}) {
where += " " + k
}
if reflect.ValueOf(v).Type().String() == "hotime.Slice" {
if reflect.ValueOf(v).Type().String() == "common.Slice" {
for i := 0; i < len(v.(Slice)); i++ {
where += " " + ObjToStr(v.(Slice)[i])