Commit 6830ff91 authored by Node- 门 忠鑫's avatar Node- 门 忠鑫

# 修改访问量同比空值判断条件错误问题

parent 17c7a4e6
......@@ -144,7 +144,7 @@ func BuildSql(strategies []Strategy) string {
func hasNilValue(params []reflect.Value) bool {
for _, c := range params {
return c.IsValid()
return !c.IsValid()
}
return false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment