Преглед изворни кода

fix:手机号不能为空

Roc пре 3 година
родитељ
комит
9eb98d5aba
1 измењених фајлова са 1 додато и 1 уклоњено
  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
 }