소스 검색

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
 }