From 2de517ef3a2555e3a3287e33789e9a10fcb9ecca Mon Sep 17 00:00:00 2001 From: hoteas Date: Tue, 16 Jul 2019 10:15:00 +0000 Subject: [PATCH] --- trunk/src/go.hoteas.com/hotime/db.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/trunk/src/go.hoteas.com/hotime/db.go b/trunk/src/go.hoteas.com/hotime/db.go index ac03a91..7994b8a 100644 --- a/trunk/src/go.hoteas.com/hotime/db.go +++ b/trunk/src/go.hoteas.com/hotime/db.go @@ -623,6 +623,12 @@ func (this *HoTimeDB) varCond(k string, v interface{}) (string, []interface{}) { case "[#]": k = strings.Replace(k, "[#]", "", -1) where += " " + k + "=" + ObjToStr(v) + case "[#!]": + k = strings.Replace(k, "[#!]", "", -1) + where += " " + k + "!=" + ObjToStr(v) + case "[!#]": + k = strings.Replace(k, "[!#]", "", -1) + where += " " + k + "!=" + ObjToStr(v) case "[~]": k = strings.Replace(k, "[~]", "", -1) where += "`" + k + "` LIKE ? "