Selaa lähdekoodia

fix:手机号不能为空

Roc 3 vuotta sitten
vanhempi
commit
9eb98d5aba
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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
 }