Explorar o código

fix:手机号不能为空

Roc %!s(int64=3) %!d(string=hai) anos
pai
achega
9eb98d5aba
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      models/tables/user_view_statistics/user_view_statistics.go

+ 1 - 1
models/tables/user_view_statistics/user_view_statistics.go

@@ -30,7 +30,7 @@ func GetUserViewListByDate(dayStr string) (list []*UserViewMobileTotalSlice, err
 	o := orm.NewOrm()
 	sql := `SELECT mobile,sum(view_num) total
 			FROM user_view_statistics
-			WHERE 1=1 and date >= ? group by mobile`
+			WHERE 1=1 and date >= ? and mobile !="" group by mobile`
 	_, err = o.Raw(sql, dayStr).QueryRows(&list)
 	return
 }